summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorolli <olli@3c298f89-4303-0410-b956-a3cf2f4a3e73>2006-02-09 23:08:33 +0000
committerolli <olli@3c298f89-4303-0410-b956-a3cf2f4a3e73>2006-02-09 23:08:33 +0000
commitc071701767dc2d11a9ed8bb0f05438f546c86503 (patch)
tree4d0a661a1b525420fee5c6c2f53d45f48a2584ee
parentc7d9cbb70f1f4f8ff45e0c12d7f3266f5bbfd24b (diff)
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 0ef547313..02e75acd0 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)