diff options
author | Felix Fietkau <nbd@openwrt.org> | 2012-09-23 12:36:32 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2012-09-23 12:36:32 +0000 |
commit | a4b0a5043dbc51989e84ec39ae12c67125617ca9 (patch) | |
tree | 3f020814b46052f1555d0c538bdf94447c6611ba /package/hostapd | |
parent | 79e9f855f4c39615d1207ba8f06851c3dcbc6b48 (diff) | |
download | upstream-a4b0a5043dbc51989e84ec39ae12c67125617ca9.tar.gz upstream-a4b0a5043dbc51989e84ec39ae12c67125617ca9.tar.bz2 upstream-a4b0a5043dbc51989e84ec39ae12c67125617ca9.zip |
hostapd: move the + to the correct line
SVN-Revision: 33527
Diffstat (limited to 'package/hostapd')
-rw-r--r-- | package/hostapd/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
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 \ |