projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
normalize Makefiles.
[openwrt.git]
/
package
/
nvram
/
Makefile
diff --git
a/package/nvram/Makefile
b/package/nvram/Makefile
index
5900f6f
..
019800a
100644
(file)
--- a/
package/nvram/Makefile
+++ b/
package/nvram/Makefile
@@
-22,20
+22,19
@@
define Build/Prepare
endef
define Package/nvram/install
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
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
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
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))
endef
$(eval $(call BuildPackage,nvram))
This page took
0.021364 seconds
and
4
git commands to generate.