This is the mail archive of the systemtap@sourceware.org mailing list for the systemtap project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug releng/22695] New: "make rpm" broken by commit 3128ca27f67476fdd5f26a44bc3809fa8396e749


https://sourceware.org/bugzilla/show_bug.cgi?id=22695

            Bug ID: 22695
           Summary: "make rpm" broken by commit
                    3128ca27f67476fdd5f26a44bc3809fa8396e749
           Product: systemtap
           Version: unspecified
            Status: NEW
          Severity: normal
          Priority: P2
         Component: releng
          Assignee: systemtap at sourceware dot org
          Reporter: wcohen at redhat dot com
  Target Milestone: ---

When attempting to build rpms from the git repo with "make rpm" I found that
the build would fail:

RPM build errors:
    File not found:
/home/wcohen/rpmbuild/BUILDROOT/systemtap-3.3-1.fc27.x86_64/usr/libexec/systemtap/python/stap-resolve-module-function.py
    File not found:
/home/wcohen/rpmbuild/BUILDROOT/systemtap-3.3-1.fc27.x86_64/usr/libexec/systemtap/python/stap-resolve-module-function.py?
make: *** [Makefile:2482: rpm] Error 1

The install places the stap-resolve-module-function.py in the wrong place as
seen in the output of the build:

 /usr/bin/mkdir -p
'/home/wcohen/rpmbuild/BUILDROOT/systemtap-3.3-1.fc27.x86_64/home/wcohen/rpmbuild/BUILDROOT/systemtap-3.3-1.fc27.x86_64/usr/libexec/systemtap/python'
 /usr/bin/install -c -m 644 stap-resolve-module-function.py
'/home/wcohen/rpmbuild/BUILDROOT/systemtap-3.3-1.fc27.x86_64/home/wcohen/rpmbuild/BUILDROOT/systemtap-3.3-1.fc27.x86_64/usr/libexec/systemtap/python'


The problem is caused by the following commit:

commit 3128ca27f67476fdd5f26a44bc3809fa8396e749
Author: David Smith <dsmith@redhat.com>
Date:   Thu Nov 16 13:23:17 2017 -0600

    Add a small fix to python/Makefile.am.

    * python/Makefile.am: Add DESTDIR to pkglibexecpythondir.
    * python/Makefile.in: Regenerated.

diff --git a/python/Makefile.am b/python/Makefile.am
index a254480f9..79fbfd7a3 100644
--- a/python/Makefile.am
+++ b/python/Makefile.am
@@ -14,7 +14,7 @@ pkglibexecpython_PYTHON =

 pkglibexecpython_DATA =

-pkglibexecpythondir = $(pkglibexecdir)/python
+pkglibexecpythondir = $(DESTDIR)$(pkglibexecdir)/python

 if HAVE_PYTHON_PROBES

diff --git a/python/Makefile.in b/python/Makefile.in
index 51ae9230c..bf3b1a3da 100644
--- a/python/Makefile.in
+++ b/python/Makefile.in
@@ -382,7 +382,7 @@ AM_CPPFLAGS = -I$(srcdir)/../includes \
 # install time.
 pkglibexecpython_PYTHON = 
 pkglibexecpython_DATA = $(am__append_1)
-pkglibexecpythondir = $(pkglibexecdir)/python
+pkglibexecpythondir = $(DESTDIR)$(pkglibexecdir)/python
 all: all-am

 .SUFFIXES:

-- 
You are receiving this mail because:
You are the assignee for the bug.

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]