Fix out-of-tree build regression
Commit 9c3e5de324
introduced an include
on rpmio_internal.h into luaext/ which works when building in the
tree but isn't found when only top_builddir is included. Include
top_srcdir too, pff.
This commit is contained in:
parent
7b7e207e68
commit
e3204e892c
|
@ -5,7 +5,7 @@ EXTRA_DIST = \
|
|||
userconfig.c \
|
||||
linit.lua
|
||||
|
||||
AM_CPPFLAGS = -I$(top_builddir) -I$(top_builddir)/include -I.
|
||||
AM_CPPFLAGS = -I$(top_builddir) -I$(top_srcdir) -I$(top_builddir)/include -I.
|
||||
|
||||
libluaext_la_CPPFLAGS = $(AM_CPPFLAGS) -DWITH_POSIX @LUA_CFLAGS@
|
||||
libluaext_la_LIBADD = @LUA_LIBS@
|
||||
|
|
Loading…
Reference in New Issue