mirror of
git://git.code.sf.net/p/xtables-addons/xtables-addons
synced 2025-09-08 13:44:56 +02:00
Makefile: add missing xtables_CFLAGS variable
If xtables.h is to be found in a directory other than included in the default preprocessor search path, compilation failed because the path specified with --with-xtables= was not passed to gcc.
This commit is contained in:
@@ -25,8 +25,9 @@ CFLAGS := @CFLAGS@
|
|||||||
LDFLAGS := @LDFLAGS@
|
LDFLAGS := @LDFLAGS@
|
||||||
regular_CFLAGS := @regular_CFLAGS@
|
regular_CFLAGS := @regular_CFLAGS@
|
||||||
kinclude_CFLAGS := @kinclude_CFLAGS@
|
kinclude_CFLAGS := @kinclude_CFLAGS@
|
||||||
|
xtables_CFLAGS := @xtables_CFLAGS@
|
||||||
|
|
||||||
AM_CFLAGS := ${regular_CFLAGS} -I${top_srcdir}/include ${kinclude_CFLAGS}
|
AM_CFLAGS := ${regular_CFLAGS} -I${top_srcdir}/include ${xtables_CFLAGS} ${kinclude_CFLAGS}
|
||||||
AM_DEPFLAGS = -Wp,-MMD,$(@D)/.$(@F).d,-MT,$@
|
AM_DEPFLAGS = -Wp,-MMD,$(@D)/.$(@F).d,-MT,$@
|
||||||
|
|
||||||
ifeq (${V},)
|
ifeq (${V},)
|
||||||
|
Reference in New Issue
Block a user