summaryrefslogtreecommitdiffstats
path: root/userspace/ebtables2
diff options
context:
space:
mode:
authorBart De Schuymer <bdschuym@pandora.be>2006-08-09 10:28:14 +0000
committerBart De Schuymer <bdschuym@pandora.be>2006-08-09 10:28:14 +0000
commit6b9e6154a73d0da45c142c1df968a63412223642 (patch)
treeff300a04b17a692cf621f023fb775faae16a4c1e /userspace/ebtables2
parentd5af4673a712e7ec1579805d686872300fcfa9cd (diff)
make static work with KERNEL_INCLUDES
Diffstat (limited to 'userspace/ebtables2')
-rw-r--r--userspace/ebtables2/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/userspace/ebtables2/Makefile b/userspace/ebtables2/Makefile
index c2b926f..6ddfdc9 100644
--- a/userspace/ebtables2/Makefile
+++ b/userspace/ebtables2/Makefile
@@ -140,7 +140,7 @@ static: extensions/ebt_*.c extensions/ebtable_*.c ebtables.c communication.c ebt
printf "extern void %s();\n" _t_$${arg}_init >> include/ebtables_u.h ; \
done ; \
printf "\n\tpseudomain(argc, argv);\n\treturn 0;\n}\n" >> ebtables-standalone.c ;\
- $(CC) $(CFLAGS) $(PROGSPECS) -o $@ $^ -Iinclude/ ; \
+ $(CC) $(CFLAGS) $(PROGSPECS) -o $@ $^ -I$(KERNEL_INCLUDES) -Iinclude ; \
for arg in $(EXT_FUNC) \
; do \
sed "s/ .*_init/ _init/" extensions/ebt_$${arg}.c > extensions/ebt_$${arg}.c_ ; \