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 | 2ee20939c6c9ae47d0978043f6377cda257354ae (patch) | |
tree | 9e5e204966ec1a23cc75bb03a90fe931ce3f8397 /openwrt/package/lighttpd | |
parent | e867e35b216b19397502ee134ca3bdbfb55ba2a1 (diff) | |
download | mtk-20170518-2ee20939c6c9ae47d0978043f6377cda257354ae.zip mtk-20170518-2ee20939c6c9ae47d0978043f6377cda257354ae.tar.gz mtk-20170518-2ee20939c6c9ae47d0978043f6377cda257354ae.tar.bz2 |
change cp to $(CP)
SVN-Revision: 3112
Diffstat (limited to 'openwrt/package/lighttpd')
-rw-r--r-- | openwrt/package/lighttpd/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openwrt/package/lighttpd/Makefile b/openwrt/package/lighttpd/Makefile index 401895c..97fa361 100644 --- a/openwrt/package/lighttpd/Makefile +++ b/openwrt/package/lighttpd/Makefile @@ -122,10 +122,10 @@ $(IPKG_LIGHTTPD): install -m0755 ./files/lighttpd.init $(IDIR_LIGHTTPD)/etc/init.d/lighttpd install -m0755 -d $(IDIR_LIGHTTPD)/usr/lib/lighttpd for m in dirlisting indexfile staticfile; do \ - cp -fpR $(PKG_INSTALL_DIR)/usr/lib/lighttpd/mod_$$m.so $(IDIR_LIGHTTPD)/usr/lib/lighttpd/ ; \ + $(CP) $(PKG_INSTALL_DIR)/usr/lib/lighttpd/mod_$$m.so $(IDIR_LIGHTTPD)/usr/lib/lighttpd/ ; \ done install -m0755 -d $(IDIR_LIGHTTPD)/usr/sbin - cp -fpR $(PKG_INSTALL_DIR)/usr/sbin/lighttpd $(IDIR_LIGHTTPD)/usr/sbin/ + $(CP) $(PKG_INSTALL_DIR)/usr/sbin/lighttpd $(IDIR_LIGHTTPD)/usr/sbin/ $(RSTRIP) $(IDIR_LIGHTTPD) $(IPKG_BUILD) $(IDIR_LIGHTTPD) $(PACKAGE_DIR) |