From: Lars-Peter Clausen Date: Sat, 8 Nov 2008 00:08:28 +0000 (+0000) Subject: Fix broken subpackage conditionals. X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;h=528c506d4cc80d703ec1883105e1235c240f78bc Fix broken subpackage conditionals. SVN-Revision: 13141 --- diff --git a/lang/python-gnome-desktop2/Makefile b/lang/python-gnome-desktop2/Makefile index b02876cc63..9cf073d026 100644 --- a/lang/python-gnome-desktop2/Makefile +++ b/lang/python-gnome-desktop2/Makefile @@ -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