diff options
author | Panu Matilainen <pmatilai@redhat.com> | 2010-01-27 15:06:05 +0200 |
---|---|---|
committer | Panu Matilainen <pmatilai@redhat.com> | 2010-01-27 15:23:46 +0200 |
commit | 53e3f65b8e2f3b8883a8410c7732062155b87957 (patch) | |
tree | 63a3c29dad301ffaff9d3a3788f4b50dbc121189 | |
parent | bd663944e5eca74af7855bbf6488ff7e6082a950 (diff) | |
download | rpm-53e3f65b8e2f3b8883a8410c7732062155b87957.tar.gz rpm-53e3f65b8e2f3b8883a8410c7732062155b87957.tar.bz2 rpm-53e3f65b8e2f3b8883a8410c7732062155b87957.zip |
Fix include path of luaext subdir
-rw-r--r-- | luaext/Makefile.am | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/luaext/Makefile.am b/luaext/Makefile.am index 3f63c62a8..41ec9ede9 100644 --- a/luaext/Makefile.am +++ b/luaext/Makefile.am @@ -5,8 +5,7 @@ EXTRA_DIST = \ userconfig.c \ linit.lua -AM_CPPFLAGS = -I$(top_builddir) -AM_CPPFLAGS += -I$(srcdir)/include -I. +AM_CPPFLAGS = -I$(top_builddir) -I$(top_builddir)/include -I. libluaext_la_CPPFLAGS = $(AM_CPPFLAGS) -DWITH_POSIX libluaext_la_LIBADD = @WITH_LUA_LIB@ |