summaryrefslogtreecommitdiffstats
path: root/package/udev
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-12-09 18:53:06 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-12-09 18:53:06 +0000
commitc3cd9cb9aba90d54aea68970ccaa2cc7a1f5e5df (patch)
tree7e9406feb083d1537a22db7005106bb47334f1ba /package/udev
parentb14c8e57db6d9aa98b4c49e9036d4638bcd788ff (diff)
Use $(CP) instead of $(INSTALL_BIN) for binaries.
Signed-off-by: Andy Boyett <agb-openwrt@padded-cell.net> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@9694 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/udev')
-rw-r--r--package/udev/Makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/package/udev/Makefile b/package/udev/Makefile
index bde7a61e3..9fcf9cfdd 100644
--- a/package/udev/Makefile
+++ b/package/udev/Makefile
@@ -52,14 +52,14 @@ define Package/udev/install
$(CP) $(PKG_INSTALL_DIR)/etc/udev/* $(1)/etc/udev/
install -d -m0775 $(1)/lib/udev
install -d -m0775 $(1)/sbin/
- $(CP) $(PKG_INSTALL_DIR)/sbin/udevcontrol $(1)/sbin/
- $(CP) $(PKG_INSTALL_DIR)/sbin/udevd $(1)/sbin/
- $(CP) $(PKG_INSTALL_DIR)/sbin/udevsettle $(1)/sbin/
+ $(INSTALL_BIN) $(PKG_INSTALL_DIR)/sbin/udevcontrol $(1)/sbin/
+ $(INSTALL_BIN) $(PKG_INSTALL_DIR)/sbin/udevd $(1)/sbin/
+ $(INSTALL_BIN) $(PKG_INSTALL_DIR)/sbin/udevsettle $(1)/sbin/
install -d -m0775 $(1)/usr/bin/
- $(CP) $(PKG_INSTALL_DIR)/usr/bin/udevinfo $(1)/usr/bin/
- $(CP) $(PKG_INSTALL_DIR)/usr/bin/udevtest $(1)/usr/bin/
+ $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/udevinfo $(1)/usr/bin/
+ $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/udevtest $(1)/usr/bin/
install -d -m0775 $(1)/usr/sbin/
- $(CP) $(PKG_INSTALL_DIR)/usr/sbin/udevmonitor $(1)/usr/sbin/
+ $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/udevmonitor $(1)/usr/sbin/
endef
define Package/udevtrigger/install