mirror of
https://github.com/hak5/wifipineapple-openwrt.git
synced 2025-10-29 16:57:19 +00:00
package/*: replace occurences of 'ln -sf' to '$(LN)'
Signed-off-by: Nicolas Thill <nico@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@43205 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
@@ -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.
|
||||
@@ -73,14 +73,14 @@ define Build/InstallDev
|
||||
$(CP) $(PKG_BUILD_DIR)/{iwlib,wireless}.h $(1)/usr/include/
|
||||
mkdir -p $(1)/usr/lib
|
||||
$(CP) $(PKG_BUILD_DIR)/libiw.so* $(1)/usr/lib/
|
||||
ln -sf libiw.so.$(PKG_VERSION) $(1)/usr/lib/libiw.so
|
||||
$(LN) libiw.so.$(PKG_VERSION) $(1)/usr/lib/libiw.so
|
||||
endef
|
||||
|
||||
define Package/wireless-tools/install
|
||||
$(INSTALL_DIR) $(1)/usr/sbin
|
||||
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/iwconfig $(1)/usr/sbin/
|
||||
ln -sf iwconfig $(1)/usr/sbin/iwlist
|
||||
ln -sf iwconfig $(1)/usr/sbin/iwpriv
|
||||
$(LN) iwconfig $(1)/usr/sbin/iwlist
|
||||
$(LN) iwconfig $(1)/usr/sbin/iwpriv
|
||||
endef
|
||||
|
||||
define Package/libiw/install
|
||||
|
||||
Reference in New Issue
Block a user