diff options
author | Mark Wielaard <mjw@redhat.com> | 2009-08-03 17:02:03 +0200 |
---|---|---|
committer | Mark Wielaard <mjw@redhat.com> | 2009-08-03 17:02:03 +0200 |
commit | 79a7b65cf99ca7ec258d11c41af5d8ab13abf609 (patch) | |
tree | 591ca5665b77ae57c909095e4038ffdc0b194c63 | |
parent | 76ff718a26fa2b73be43ca8d99fb091b686b1d85 (diff) | |
download | systemtap-steved-79a7b65cf99ca7ec258d11c41af5d8ab13abf609.tar.gz systemtap-steved-79a7b65cf99ca7ec258d11c41af5d8ab13abf609.tar.xz systemtap-steved-79a7b65cf99ca7ec258d11c41af5d8ab13abf609.zip |
Make sure we pick up our own sdt.h, not the (maybe not installed) system one.
* Makefile.am (AM_CPPFLAGS): Add -I$(srcdir)/includes.
* Makefile.in: Regenerated.
-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 37491eef..c2234d1c 100644 --- a/Makefile.am +++ b/Makefile.am @@ -7,7 +7,7 @@ AUTOMAKE_OPTIONS = no-dist foreign pkglibexecdir = ${libexecdir}/${PACKAGE} oldincludedir = ${includedir}/sys -AM_CPPFLAGS = -DBINDIR='"$(bindir)"' -DSYSCONFDIR='"$(sysconfdir)"' -DPKGDATADIR='"${pkgdatadir}"' -DPKGLIBDIR='"$(pkglibexecdir)"' +AM_CPPFLAGS = -DBINDIR='"$(bindir)"' -DSYSCONFDIR='"$(sysconfdir)"' -DPKGDATADIR='"${pkgdatadir}"' -DPKGLIBDIR='"$(pkglibexecdir)"' -I$(srcdir)/includes AM_CFLAGS = -D_GNU_SOURCE -fexceptions -Wall -Werror -Wunused -Wformat=2 -W AM_CXXFLAGS = -Wall -Werror diff --git a/Makefile.in b/Makefile.in index 9410eaae..a1b45add 100644 --- a/Makefile.in +++ b/Makefile.in @@ -358,7 +358,7 @@ top_srcdir = @top_srcdir@ # we don't maintain a ChangeLog, which makes us non-GNU -> foreign AUTOMAKE_OPTIONS = no-dist foreign -AM_CPPFLAGS = -DBINDIR='"$(bindir)"' -DSYSCONFDIR='"$(sysconfdir)"' -DPKGDATADIR='"${pkgdatadir}"' -DPKGLIBDIR='"$(pkglibexecdir)"' +AM_CPPFLAGS = -DBINDIR='"$(bindir)"' -DSYSCONFDIR='"$(sysconfdir)"' -DPKGDATADIR='"${pkgdatadir}"' -DPKGLIBDIR='"$(pkglibexecdir)"' -I$(srcdir)/includes AM_CFLAGS = -D_GNU_SOURCE -fexceptions -Wall -Werror -Wunused -Wformat=2 -W AM_CXXFLAGS = -Wall -Werror man_MANS = stapprobes.3stap stapfuncs.3stap stapvars.3stap \ |