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:
Panu Matilainen 2018-06-27 15:09:11 +03:00
parent 7b7e207e68
commit e3204e892c
1 changed files with 1 additions and 1 deletions

View File

@ -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@