diff options
author | Nicolas Thill <nico@openwrt.org> | 2014-11-06 19:35:34 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2014-11-06 19:35:34 +0000 |
commit | f4417f7ad8f2da7d99c48eead14b0a2e8ad0f387 (patch) | |
tree | a0e28ec68139151407b3a76169cba65a52840029 /package/network/services/hostapd/Makefile | |
parent | bd92e9806b35a0d9f6d8351eb274d2cdfcc142b9 (diff) | |
download | upstream-f4417f7ad8f2da7d99c48eead14b0a2e8ad0f387.tar.gz upstream-f4417f7ad8f2da7d99c48eead14b0a2e8ad0f387.tar.bz2 upstream-f4417f7ad8f2da7d99c48eead14b0a2e8ad0f387.zip |
package/*: replace occurences of 'ln -sf' to '$(LN)'
Signed-off-by: Nicolas Thill <nico@openwrt.org>
SVN-Revision: 43205
Diffstat (limited to 'package/network/services/hostapd/Makefile')
-rw-r--r-- | package/network/services/hostapd/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/network/services/hostapd/Makefile b/package/network/services/hostapd/Makefile index d698c050a3..d8b3498b11 100644 --- a/package/network/services/hostapd/Makefile +++ b/package/network/services/hostapd/Makefile @@ -372,8 +372,8 @@ define Package/wpad/install $(call Install/hostapd,$(1)) $(call Install/supplicant,$(1)) $(INSTALL_BIN) $(PKG_BUILD_DIR)/wpad $(1)/usr/sbin/ - ln -sf wpad $(1)/usr/sbin/hostapd - ln -sf wpad $(1)/usr/sbin/wpa_supplicant + $(LN) wpad $(1)/usr/sbin/hostapd + $(LN) wpad $(1)/usr/sbin/wpa_supplicant endef Package/wpad-mini/install = $(Package/wpad/install) |