From: Florian Fainelli Date: Thu, 10 Jan 2008 18:20:34 +0000 (+0000) Subject: Fix install permissions and executable bits for rp-pppoe (#2882) X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=21b0cf7e8f3cd8a2b92fc6c970035aebf3ba1a5d;p=openwrt%2Fsvn-archive%2Fpackages.git Fix install permissions and executable bits for rp-pppoe (#2882) SVN-Revision: 10159 --- diff --git a/net/rp-pppoe/Makefile b/net/rp-pppoe/Makefile index 2300492c3..249084a15 100644 --- a/net/rp-pppoe/Makefile +++ b/net/rp-pppoe/Makefile @@ -63,7 +63,9 @@ define Package/rp-pppoe-client/install $(INSTALL_DATA) $(PKG_INSTALL_DIR)/etc/ppp/pppoe.conf $(1)/etc/ppp/ $(INSTALL_DIR) $(1)/usr/sbin $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/pppoe $(1)/usr/sbin/ - $(CP) $(PKG_BUILD_DIR)/scripts/pppoe-{connect,start,stop} $(1)/usr/sbin/ + $(INSTALL_BIN) $(PKG_BUILD_DIR)/scripts/pppoe-connect $(1)/usr/sbin/ + $(INSTALL_BIN) $(PKG_BUILD_DIR)/scripts/pppoe-start $(1)/usr/sbin/ + $(INSTALL_BIN) $(PKG_BUILD_DIR)/scripts/pppoe-stop $(1)/usr/sbin/ $(SED) 's,modprobe,insmod,g' $(1)/usr/sbin/pppoe-connect endef