diff options
author | guanglei <guanglei> | 2006-09-29 07:25:46 +0000 |
---|---|---|
committer | guanglei <guanglei> | 2006-09-29 07:25:46 +0000 |
commit | 6bc51533412b34934124cf8921394f619455a542 (patch) | |
tree | 3e87e62922ef28282f4c8697582b3ca915032972 | |
parent | 74948c250560f0b8e6580104c36730dc64eb2e86 (diff) | |
download | systemtap-steved-6bc51533412b34934124cf8921394f619455a542.tar.gz systemtap-steved-6bc51533412b34934124cf8921394f619455a542.tar.xz systemtap-steved-6bc51533412b34934124cf8921394f619455a542.zip |
PR 3282
Makefile.am: add -DPKGLIBDIR='"$(pkglibexecdir)"' to AM_CPPFLAGS
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Makefile.am | 2 | ||||
-rw-r--r-- | Makefile.in | 2 |
3 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2006-09-29 Li Guanglei <guanglei@cn.ibm.com> + + PR 3282 + * Makefile.am: add -DPKGLIBDIR='"$(pkglibexecdir)"' to AM_CPPFLAGS + 2006-09-28 Josh Stone <joshua.i.stone@intel.com> PR 3278 diff --git a/Makefile.am b/Makefile.am index 6dd03d0d..8585fd50 100644 --- a/Makefile.am +++ b/Makefile.am @@ -5,7 +5,7 @@ AUTOMAKE_OPTIONS = dist-bzip2 pkglibexecdir = ${libexecdir}/${PACKAGE} -AM_CPPFLAGS = -DBINDIR='"$(bindir)"' -DPKGDATADIR='"${pkgdatadir}"' +AM_CPPFLAGS = -DBINDIR='"$(bindir)"' -DPKGDATADIR='"${pkgdatadir}"' -DPKGLIBDIR='"$(pkglibexecdir)"' AM_CFLAGS = -std=gnu99 -D_GNU_SOURCE -fexceptions \ -Wall -Werror -Wshadow -Wunused -Wformat=2 -W diff --git a/Makefile.in b/Makefile.in index e0c8081e..87b7cc7e 100644 --- a/Makefile.in +++ b/Makefile.in @@ -215,7 +215,7 @@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ AUTOMAKE_OPTIONS = dist-bzip2 pkglibexecdir = ${libexecdir}/${PACKAGE} -AM_CPPFLAGS = -DBINDIR='"$(bindir)"' -DPKGDATADIR='"${pkgdatadir}"' +AM_CPPFLAGS = -DBINDIR='"$(bindir)"' -DPKGDATADIR='"${pkgdatadir}"' -DPKGLIBDIR='"$(pkglibexecdir)"' AM_CFLAGS = -std=gnu99 -D_GNU_SOURCE -fexceptions \ -Wall -Werror -Wshadow -Wunused -Wformat=2 -W |