From: Sebastian Claßen Date: Mon, 8 Oct 2007 05:13:51 +0000 (+0000) Subject: make print-extensions doesn't show libxt_* extensions X-Git-Tag: v1.4.0-rc1~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9e6fcb226fb767784d5f530f67bd30144aa98459;p=thirdparty%2Fiptables.git make print-extensions doesn't show libxt_* extensions In extensions/Makefile the variable PFX_EXT_SLIB_OPTS is not appended to OPTIONALS, therefor 'make print-extensions' doesn't show any optional libxt_* extension. Sebastian Claßen --- diff --git a/extensions/Makefile b/extensions/Makefile index 93ead510..5af234e2 100644 --- a/extensions/Makefile +++ b/extensions/Makefile @@ -85,6 +85,7 @@ PF_EXT_SLIB+=$(PF_EXT_SLIB_OPTS) PF6_EXT_SLIB+=$(PF6_EXT_SLIB_OPTS) PFX_EXT_SLIB+=$(PFX_EXT_SLIB_OPTS) +OPTIONALS+=$(patsubst %,XT:%,$(PFX_EXT_SLIB_OPTS)) OPTIONALS+=$(patsubst %,IPv4:%,$(PF_EXT_SLIB_OPTS)) OPTIONALS+=$(patsubst %,IPv6:%,$(PF6_EXT_SLIB_OPTS))