From: Oliver Ertl Date: Thu, 9 Feb 2006 23:08:33 +0000 (+0000) Subject: replace 'mkdir -p' by 'install -d -m0755' X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=9f230d326330577e026c6a8e9b1d45930bc2008e;p=librecmc%2Flibrecmc.git replace 'mkdir -p' by 'install -d -m0755' SVN-Revision: 3209 --- diff --git a/openwrt/package/iftop/Makefile b/openwrt/package/iftop/Makefile index 0ef547313f..02e75acd0d 100644 --- a/openwrt/package/iftop/Makefile +++ b/openwrt/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)