diff options
author | Mike Baker <mbm@openwrt.org> | 2006-02-01 23:53:19 +0000 |
---|---|---|
committer | Mike Baker <mbm@openwrt.org> | 2006-02-01 23:53:19 +0000 |
commit | e0af0a4eb8fe94c5b9eb3baf074fdcf5183c10d0 (patch) | |
tree | e4befa0d3bc81d1997e84c21273ee358620f6be0 /package/rp-pppoe | |
parent | 8966d3e9406a91e923a5565a3c6342050965fc0b (diff) | |
download | upstream-e0af0a4eb8fe94c5b9eb3baf074fdcf5183c10d0.tar.gz upstream-e0af0a4eb8fe94c5b9eb3baf074fdcf5183c10d0.tar.bz2 upstream-e0af0a4eb8fe94c5b9eb3baf074fdcf5183c10d0.zip |
change cp to $(CP)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@3112 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/rp-pppoe')
-rw-r--r-- | package/rp-pppoe/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/package/rp-pppoe/Makefile b/package/rp-pppoe/Makefile index e556afd472..1b829d8363 100644 --- a/package/rp-pppoe/Makefile +++ b/package/rp-pppoe/Makefile @@ -66,8 +66,8 @@ $(IPKG_PPPOE_CLIENT): install -d -m0755 $(IDIR_PPPOE_CLIENT)/etc/ppp install -m0644 $(PKG_INSTALL_DIR)/etc/pppoe.conf $(IDIR_PPPOE_CLIENT)/etc/ install -d -m0755 $(IDIR_PPPOE_CLIENT)/usr/sbin - cp -fpR $(PKG_INSTALL_DIR)/usr/sbin/pppoe $(IDIR_PPPOE_CLIENT)/usr/sbin/ - cp -fpR $(PKG_INSTALL_DIR)/usr/sbin/adsl-* $(IDIR_PPPOE_CLIENT)/usr/sbin/ + $(CP) $(PKG_INSTALL_DIR)/usr/sbin/pppoe $(IDIR_PPPOE_CLIENT)/usr/sbin/ + $(CP) $(PKG_INSTALL_DIR)/usr/sbin/adsl-* $(IDIR_PPPOE_CLIENT)/usr/sbin/ $(RSTRIP) $(IDIR_PPPOE_CLIENT) $(IPKG_BUILD) $(IDIR_PPPOE_CLIENT) $(PACKAGE_DIR) @@ -77,7 +77,7 @@ $(IPKG_PPPOE_RELAY): install -d -m0755 $(IDIR_PPPOE_RELAY)/etc/init.d install -m0755 ./files/pppoe-relay.init $(IDIR_PPPOE_RELAY)/etc/init.d/pppoe-relay install -d -m0755 $(IDIR_PPPOE_RELAY)/usr/sbin - cp -fpR $(PKG_INSTALL_DIR)/usr/sbin/pppoe-relay $(IDIR_PPPOE_RELAY)/usr/sbin/ + $(CP) $(PKG_INSTALL_DIR)/usr/sbin/pppoe-relay $(IDIR_PPPOE_RELAY)/usr/sbin/ $(RSTRIP) $(IDIR_PPPOE_RELAY) $(IPKG_BUILD) $(IDIR_PPPOE_RELAY) $(PACKAGE_DIR) @@ -89,13 +89,13 @@ $(IPKG_PPPOE_SERVER): install -d -m0755 $(IDIR_PPPOE_SERVER)/etc/ppp install -m0644 $(PKG_INSTALL_DIR)/etc/ppp/pppoe-server-options $(IDIR_PPPOE_SERVER)/etc/ppp/ install -d -m0755 $(IDIR_PPPOE_SERVER)/usr/sbin - cp -fpR $(PKG_INSTALL_DIR)/usr/sbin/pppoe-server $(IDIR_PPPOE_SERVER)/usr/sbin/ + $(CP) $(PKG_INSTALL_DIR)/usr/sbin/pppoe-server $(IDIR_PPPOE_SERVER)/usr/sbin/ $(RSTRIP) $(IDIR_PPPOE_SERVER) $(IPKG_BUILD) $(IDIR_PPPOE_SERVER) $(PACKAGE_DIR) $(IPKG_PPPOE_SNIFF): install -d -m0755 $(IDIR_PPPOE_SNIFF)/usr/sbin - cp -fpR $(PKG_INSTALL_DIR)/usr/sbin/pppoe-sniff $(IDIR_PPPOE_SNIFF)/usr/sbin/ + $(CP) $(PKG_INSTALL_DIR)/usr/sbin/pppoe-sniff $(IDIR_PPPOE_SNIFF)/usr/sbin/ $(RSTRIP) $(IDIR_PPPOE_SNIFF) $(IPKG_BUILD) $(IDIR_PPPOE_SNIFF) $(PACKAGE_DIR) |