aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOpenWrt Developers <openwrt-devel@openwrt.org>2006-02-09 23:08:33 +0000
committerOpenWrt Developers <openwrt-devel@openwrt.org>2006-02-09 23:08:33 +0000
commit2aac345f2ba25855134b527d40671a28722202e4 (patch)
tree4d0a661a1b525420fee5c6c2f53d45f48a2584ee
parente29fbcbcbcd7d18e1c1d83e2a610d47b82b98484 (diff)
downloadmaster-187ad058-2aac345f2ba25855134b527d40671a28722202e4.tar.gz
master-187ad058-2aac345f2ba25855134b527d40671a28722202e4.tar.bz2
master-187ad058-2aac345f2ba25855134b527d40671a28722202e4.zip
replace 'mkdir -p' by 'install -d -m0755'
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@3209 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r--package/iftop/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/iftop/Makefile b/package/iftop/Makefile
index 0ef547313f..02e75acd0d 100644
--- a/package/iftop/Makefile
+++ b/package/iftop/Makefile
@@ -55,7 +55,7 @@ $(PKG_BUILD_DIR)/.built:
touch $@
$(IPKG_IFTOP):
- mkdir -p $(IDIR_IFTOP)/usr/bin
+ install -d -m0755 $(IDIR_IFTOP)/usr/bin
$(CP) $(PKG_INSTALL_DIR)/usr/sbin/$(PKG_NAME) $(IDIR_IFTOP)/usr/bin/
$(STRIP) $(IDIR_IFTOP)/usr/bin/*
$(IPKG_BUILD) $(IDIR_IFTOP) $(PACKAGE_DIR)