diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Makefile.am | 2 | ||||
-rw-r--r-- | Makefile.in | 2 |
3 files changed, 5 insertions, 4 deletions
@@ -1,9 +1,10 @@ 2005-07-26 Martin Hunt <hunt@redhat.com> - * systemtap.spec.in: Stpd goes in libexec/systemtap. + * Makefile.am (AM_CPPFLAGS): Set PKGLIBDIR correctly. +2005-07-26 Martin Hunt <hunt@redhat.com> + * systemtap.spec.in: Stpd goes in libexec/systemtap. * Makefile.am (libexecdir): Set to libexecdir/systemtap. - * aclocal.m4, Makefile.in: Regenerated 2005-07-25 Roland McGrath <roland@redhat.com> diff --git a/Makefile.am b/Makefile.am index 9be8fb1e..a689999d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -5,7 +5,7 @@ libexecdir = @libexecdir@/@PACKAGE@ AM_MAKEFLAGS = 'CXXFLAGS=$(CXXFLAGS)' 'LDFLAGS=$(LDFLAGS)' -AM_CPPFLAGS = -DPKGLIBDIR='"${libexecdir}/${PACKAGE}"' \ +AM_CPPFLAGS = -DPKGLIBDIR='"${libexecdir}"' \ -DPKGDATADIR='"${datadir}/${PACKAGE}"' bin_PROGRAMS = stap diff --git a/Makefile.in b/Makefile.in index d270e969..730161e1 100644 --- a/Makefile.in +++ b/Makefile.in @@ -181,7 +181,7 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ AM_MAKEFLAGS = 'CXXFLAGS=$(CXXFLAGS)' 'LDFLAGS=$(LDFLAGS)' -AM_CPPFLAGS = -DPKGLIBDIR='"${libexecdir}/${PACKAGE}"' \ +AM_CPPFLAGS = -DPKGLIBDIR='"${libexecdir}"' \ -DPKGDATADIR='"${datadir}/${PACKAGE}"' stap_SOURCES = main.cxx \ |