package/*: replace occurences of 'ln -sf' to '$(LN)'

Signed-off-by: Nicolas Thill <nico@openwrt.org>

SVN-Revision: 43205
This commit is contained in:
Nicolas Thill
2014-11-06 19:35:34 +00:00
parent bd92e9806b
commit f4417f7ad8
12 changed files with 34 additions and 34 deletions

View File

@@ -1,5 +1,5 @@
#
# Copyright (C) 2006-2009 OpenWrt.org
# Copyright (C) 2006-2014 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
@@ -87,13 +87,13 @@ endef
define KernelPackage/sangam-atm-annex-a/install
mkdir -p $(1)/lib/firmware
$(INSTALL_DATA) $(PKG_BUILD_DIR)/ar0700mp.bin $(1)/lib/firmware/
ln -sf ar0700mp.bin $(1)/lib/firmware/ar0700xx.bin
$(LN) ar0700mp.bin $(1)/lib/firmware/ar0700xx.bin
endef
define KernelPackage/sangam-atm-annex-b/install
mkdir -p $(1)/lib/firmware
$(INSTALL_DATA) $(PKG_BUILD_DIR)/ar0700db.bin $(1)/lib/firmware/
ln -sf ar0700db.bin $(1)/lib/firmware/ar0700xx.bin
$(LN) ar0700db.bin $(1)/lib/firmware/ar0700xx.bin
endef
$(eval $(call KernelPackage,sangam-atm-annex-a))

View File

@@ -166,8 +166,8 @@ endef
define Package/nas/install
$(INSTALL_DIR) $(1)/usr/sbin
$(INSTALL_BIN) $(PKG_BUILD_DIR)/nas $(1)/usr/sbin/
ln -sf nas $(1)/usr/sbin/nas4not
ln -sf nas $(1)/usr/sbin/nas4wds
$(LN) nas $(1)/usr/sbin/nas4not
$(LN) nas $(1)/usr/sbin/nas4wds
endef
$(eval $(call KernelPackage,brcm-wl))