From: Felix Fietkau Date: Sun, 23 Sep 2012 12:36:32 +0000 (+0000) Subject: hostapd: move the + to the correct line X-Git-Tag: reboot~12814 X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fopenwrt.git;a=commitdiff_plain;h=a4b0a5043dbc51989e84ec39ae12c67125617ca9 hostapd: move the + to the correct line SVN-Revision: 33527 --- diff --git a/package/hostapd/Makefile b/package/hostapd/Makefile index a45a168bbc..5d279c51c5 100644 --- a/package/hostapd/Makefile +++ b/package/hostapd/Makefile @@ -234,7 +234,7 @@ endif define Build/RunMake CFLAGS="$(TARGET_CPPFLAGS) $(TARGET_CFLAGS)" \ - +$(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR)/$(1) \ + $(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR)/$(1) \ $(TARGET_CONFIGURE_OPTS) \ $(DRIVER_MAKEOPTS) \ LIBS="$(TARGET_LDFLAGS)" \ @@ -247,12 +247,12 @@ define Build/Compile/wpad $(call Build/RunMake,wpa_supplicant,-s MULTICALL=1 dump_cflags) | \ sed -e 's,-n ,,g' -e 's,$(TARGET_CFLAGS),,' \ ` > $(PKG_BUILD_DIR)/.cflags - $(call Build/RunMake,hostapd, \ + +$(call Build/RunMake,hostapd, \ CFLAGS="$$$$(cat $(PKG_BUILD_DIR)/.cflags)" \ MULTICALL=1 \ hostapd_cli hostapd_multi.a \ ) - $(call Build/RunMake,wpa_supplicant, \ + +$(call Build/RunMake,wpa_supplicant, \ CFLAGS="$$$$(cat $(PKG_BUILD_DIR)/.cflags)" \ MULTICALL=1 \ wpa_cli wpa_supplicant_multi.a \