diff options
author | Dave Brolley <brolley@redhat.com> | 2009-05-06 11:19:04 -0400 |
---|---|---|
committer | Dave Brolley <brolley@redhat.com> | 2009-05-06 11:19:04 -0400 |
commit | aa4d7d17299550b06c33f386d2c5715f8250879f (patch) | |
tree | 3cefc5d278876387ddf443b69899afc595bf3f08 | |
parent | 647e92600d129f4c0b6e1f4b98ef4d65c609f827 (diff) | |
download | systemtap-steved-aa4d7d17299550b06c33f386d2c5715f8250879f.tar.gz systemtap-steved-aa4d7d17299550b06c33f386d2c5715f8250879f.tar.xz systemtap-steved-aa4d7d17299550b06c33f386d2c5715f8250879f.zip |
Replace entire default path for stap_exec_prefix.
-rw-r--r-- | Makefile.am | 2 | ||||
-rw-r--r-- | Makefile.in | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index 7779c0eb..d1b5789e 100644 --- a/Makefile.am +++ b/Makefile.am @@ -129,7 +129,7 @@ PHONIES += install-scripts # scripts should be installed before this rule is run install-scripts: install-binSCRIPTS for f in $(bin_SCRIPTS); do \ - sed -i -e "/INSTALL-HOOK/d;s,exec_prefix=,exec_prefix=$(exec_prefix)/bin/,;s,sysconfdir=.*,sysconfdir=$(sysconfdir)," $(DESTDIR)$(bindir)/$$f; \ + sed -i -e "/INSTALL-HOOK/d;s,exec_prefix=.*,exec_prefix=$(exec_prefix)/bin/,;s,sysconfdir=.*,sysconfdir=$(sysconfdir)," $(DESTDIR)$(bindir)/$$f; \ done endif diff --git a/Makefile.in b/Makefile.in index d847610a..9a8c9a76 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1549,7 +1549,7 @@ cscope: # scripts should be installed before this rule is run @BUILD_SERVER_TRUE@install-scripts: install-binSCRIPTS @BUILD_SERVER_TRUE@ for f in $(bin_SCRIPTS); do \ -@BUILD_SERVER_TRUE@ sed -i -e "/INSTALL-HOOK/d;s,exec_prefix=,exec_prefix=$(exec_prefix)/bin/,;s,sysconfdir=.*,sysconfdir=$(sysconfdir)," $(DESTDIR)$(bindir)/$$f; \ +@BUILD_SERVER_TRUE@ sed -i -e "/INSTALL-HOOK/d;s,exec_prefix=.*,exec_prefix=$(exec_prefix)/bin/,;s,sysconfdir=.*,sysconfdir=$(sysconfdir)," $(DESTDIR)$(bindir)/$$f; \ @BUILD_SERVER_TRUE@ done install-exec-hook: |