diff options
author | Ralf Corsépius <corsepiu@fedoraproject.org> | 2007-10-17 16:41:59 +0200 |
---|---|---|
committer | Ralf Corsépius <corsepiu@fedoraproject.org> | 2007-10-17 16:41:59 +0200 |
commit | ea2968b6b3b2a79e40f986f148c77a1d15be3365 (patch) | |
tree | b48bf6664b2303c47d1cdd6ca45328cc2085bf38 /Makefile.am | |
parent | cc113a1aad048c06d71a64516f83741902c65a45 (diff) | |
download | librpm-tizen-ea2968b6b3b2a79e40f986f148c77a1d15be3365.tar.gz librpm-tizen-ea2968b6b3b2a79e40f986f148c77a1d15be3365.tar.bz2 librpm-tizen-ea2968b6b3b2a79e40f986f148c77a1d15be3365.zip |
Cleanup CPPFLAGS.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/Makefile.am b/Makefile.am index 82654e8ff..a915969f0 100644 --- a/Makefile.am +++ b/Makefile.am @@ -19,15 +19,15 @@ DIST_SUBDIRS = po misc db3 lua rpmio rpmdb lib build python scripts doc tests pkgconfigdir = $(libdir)/pkgconfig -AM_CPPFLAGS = \ - -I$(top_srcdir)/build \ - -I$(top_srcdir)/lib \ - -I$(top_srcdir)/rpmdb \ - -I$(top_srcdir)/rpmio \ - @WITH_BEECRYPT_INCLUDE@ \ - @WITH_POPT_INCLUDE@ \ - -I$(top_srcdir)/misc \ - @WITH_LIBELF_INCLUDE@ +AM_CPPFLAGS = -I$(top_builddir) -I$(top_srcdir) +AM_CPPFLAGS += -I$(top_srcdir)/build +AM_CPPFLAGS += -I$(top_srcdir)/lib +AM_CPPFLAGS += -I$(top_srcdir)/rpmdb +AM_CPPFLAGS += -I$(top_srcdir)/rpmio +AM_CPPFLAGS += @WITH_BEECRYPT_INCLUDE@ +AM_CPPFLAGS += @WITH_POPT_INCLUDE@ +AM_CPPFLAGS += -I$(top_srcdir)/misc +AM_CPPFLAGS += @WITH_LIBELF_INCLUDE@ AM_CPPFLAGS += -DLOCALEDIR="\"$(localedir)\"" AM_CPPFLAGS += -DRPMCONFIGDIR="\"@RPMCONFIGDIR@\"" AM_CPPFLAGS += -DLIBRPMALIAS_FILENAME="\"@RPMCONFIGDIR@/rpmpopt-${VERSION}\"" |