diff options
author | mbm <mbm@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-02-01 23:53:19 +0000 |
---|---|---|
committer | mbm <mbm@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-02-01 23:53:19 +0000 |
commit | 475e0d886041b4345585e13f0c04bcb9af0c0c5a (patch) | |
tree | 1cee9cdbc46a10aace75d7ad9775d35a13e3c3ff /openwrt/package/ustl/Makefile | |
parent | 5ef7471191922d05b08e520a05f4a7daeb22754b (diff) |
change cp to $(CP)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@3112 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/package/ustl/Makefile')
-rw-r--r-- | openwrt/package/ustl/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/openwrt/package/ustl/Makefile b/openwrt/package/ustl/Makefile index 36b77c9583..f211f812d6 100644 --- a/openwrt/package/ustl/Makefile +++ b/openwrt/package/ustl/Makefile @@ -21,8 +21,8 @@ BR2_PACKAGE_USTL:=m $(eval $(call PKG_template,USTL,ustl,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) $(PKG_BUILD_DIR)/.configured: - cp ./files/config.h $(PKG_BUILD_DIR)/ - cp ./files/Common.mk $(PKG_BUILD_DIR)/ + $(CP) ./files/config.h $(PKG_BUILD_DIR)/ + $(CP) ./files/Common.mk $(PKG_BUILD_DIR)/ touch $@ $(PKG_BUILD_DIR)/.built: @@ -37,16 +37,16 @@ $(PKG_BUILD_DIR)/.built: $(IPKG_USTL): install -d -m0755 $(IDIR_USTL)/usr/lib - cp -fpR $(PKG_INSTALL_DIR)/usr/lib/libustl.so.* $(IDIR_USTL)/usr/lib/ + $(CP) $(PKG_INSTALL_DIR)/usr/lib/libustl.so.* $(IDIR_USTL)/usr/lib/ $(RSTRIP) $(IDIR_USTL) $(IPKG_BUILD) $(IDIR_USTL) $(PACKAGE_DIR) $(STAGING_DIR)/usr/lib/libustl.so: $(PKG_BUILD_DIR)/.built mkdir -p $(STAGING_DIR)/usr/include - cp -fpR $(PKG_INSTALL_DIR)/usr/include/ustl* $(STAGING_DIR)/usr/include/ + $(CP) $(PKG_INSTALL_DIR)/usr/include/ustl* $(STAGING_DIR)/usr/include/ mkdir -p $(STAGING_DIR)/usr/lib - cp -fpR $(PKG_INSTALL_DIR)/usr/lib/libustl.a $(STAGING_DIR)/usr/lib/ - cp -fpR $(PKG_INSTALL_DIR)/usr/lib/libustl.so* $(STAGING_DIR)/usr/lib/ + $(CP) $(PKG_INSTALL_DIR)/usr/lib/libustl.a $(STAGING_DIR)/usr/lib/ + $(CP) $(PKG_INSTALL_DIR)/usr/lib/libustl.so* $(STAGING_DIR)/usr/lib/ touch $@ install-dev: $(STAGING_DIR)/usr/lib/libustl.so |