summaryrefslogtreecommitdiff
path: root/openwrt/package/nvram
diff options
context:
space:
mode:
authorNicolas Thill <nico@openwrt.org>2006-06-18 18:30:40 +0000
committerNicolas Thill <nico@openwrt.org>2006-06-18 18:30:40 +0000
commitb65701e8874616ebcdcf7dfa4883a034c52eaf93 (patch)
tree5ef5c474dddaad4f57a06a1d4311a0ccf56f6b3a /openwrt/package/nvram
parentf24397711b6a1c2605939b8349dfbe6ab3ea64aa (diff)
downloadmtk-20170518-b65701e8874616ebcdcf7dfa4883a034c52eaf93.zip
mtk-20170518-b65701e8874616ebcdcf7dfa4883a034c52eaf93.tar.gz
mtk-20170518-b65701e8874616ebcdcf7dfa4883a034c52eaf93.tar.bz2
normalize Makefiles.
SVN-Revision: 3998
Diffstat (limited to 'openwrt/package/nvram')
-rw-r--r--openwrt/package/nvram/Makefile11
1 files changed, 5 insertions, 6 deletions
diff --git a/openwrt/package/nvram/Makefile b/openwrt/package/nvram/Makefile
index 5900f6f..019800a 100644
--- a/openwrt/package/nvram/Makefile
+++ b/openwrt/package/nvram/Makefile
@@ -22,20 +22,19 @@ define Build/Prepare
endef
define Package/nvram/install
- install -d -m0755 $(1)/usr/lib
+ install -d -m0755 $(1)/usr/lib
+ $(CP) $(PKG_BUILD_DIR)/lib{nvram,shared}*.so $(1)/usr/lib/
install -d -m0755 $(1)/usr/sbin
- $(CP) $(PKG_BUILD_DIR)/*.so $(1)/usr/lib
- install -m0755 $(PKG_BUILD_DIR)/nvram $(1)/usr/sbin
+ install -m0755 $(PKG_BUILD_DIR)/nvram $(1)/usr/sbin/
endef
define Build/InstallDev
mkdir -p $(STAGING_DIR)/usr/lib
- $(CP) $(PKG_BUILD_DIR)/*.so $(STAGING_DIR)/usr/lib
+ $(CP) $(PKG_BUILD_DIR)/lib{nvram,shared}*.so $(STAGING_DIR)/usr/lib/
endef
define Build/UninstallDev
- rm -f $(STAGING_DIR)/usr/lib/libshared*.so \
- $(STAGING_DIR)/usr/lib/libnvram*.so
+ rm -f $(STAGING_DIR)/usr/lib/lib{nvram,shared}*.so
endef
$(eval $(call BuildPackage,nvram))