diff options
author | Panu Matilainen <pmatilai@redhat.com> | 2010-10-12 09:27:46 +0300 |
---|---|---|
committer | Panu Matilainen <pmatilai@redhat.com> | 2010-10-12 09:27:46 +0300 |
commit | 0d70636c6dde2a5b40edb0ed22afaf311addf27c (patch) | |
tree | 31156bb3f39036972e6e45ba899ce942b64b5fbb /misc | |
parent | 26125015e4321765582dce0b76f83530e7604d4e (diff) | |
download | librpm-tizen-0d70636c6dde2a5b40edb0ed22afaf311addf27c.tar.gz librpm-tizen-0d70636c6dde2a5b40edb0ed22afaf311addf27c.tar.bz2 librpm-tizen-0d70636c6dde2a5b40edb0ed22afaf311addf27c.zip |
Fix misc/ include path
- -I$(top_builddir)/include/rpm was never right, and now with fts
moved into misc/ this shows as rpm/rpmutil.h not getting found.
Diffstat (limited to 'misc')
-rw-r--r-- | misc/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/Makefile.am b/misc/Makefile.am index fcfea8cbb..e06fcac7b 100644 --- a/misc/Makefile.am +++ b/misc/Makefile.am @@ -1,6 +1,6 @@ # Makefile for misc library. -AM_CPPFLAGS = -I$(top_builddir) -I$(top_srcdir) -I$(top_builddir)/include/rpm +AM_CPPFLAGS = -I$(top_builddir) -I$(top_srcdir) -I$(top_builddir)/include AM_CPPFLAGS += -I$(top_srcdir)/misc EXTRA_DIST = \ |