Fix broken subpackage conditionals.

git-svn-id: svn://svn.openwrt.org/openwrt/packages@13141 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
lars 2008-11-08 00:08:28 +00:00
parent e563f2821d
commit 2b6f9b243a

View File

@ -50,8 +50,8 @@ endef
define Build/Configure
$(call Build/Configure/Default, \
$(if, $(CONFIG_PACKGE_python-rsvg), --enable-rsvg, --disable-rsvg), \
$(if, $(CONFIG_PACKGE_python-wnck), --enable-wnck, --disable-wnck), \
$(if $(CONFIG_PACKAGE_python-rsvg), --enable-rsvg, --disable-rsvg) \
$(if $(CONFIG_PACKAGE_python-wnck), --enable-wnck, --disable-wnck) \
)
endef