diff options
author | Oliver Ertl <oliver@ertl-net.net> | 2006-02-09 23:08:33 +0000 |
---|---|---|
committer | Oliver Ertl <oliver@ertl-net.net> | 2006-02-09 23:08:33 +0000 |
commit | 9f230d326330577e026c6a8e9b1d45930bc2008e (patch) | |
tree | db1bd29bddc828e8fdfb653933b515d03e5db760 /openwrt | |
parent | c4ba022a7bee9fc7d9835029e5964b9466be6379 (diff) | |
download | mtk-20170518-9f230d326330577e026c6a8e9b1d45930bc2008e.zip mtk-20170518-9f230d326330577e026c6a8e9b1d45930bc2008e.tar.gz mtk-20170518-9f230d326330577e026c6a8e9b1d45930bc2008e.tar.bz2 |
replace 'mkdir -p' by 'install -d -m0755'
SVN-Revision: 3209
Diffstat (limited to 'openwrt')
-rw-r--r-- | openwrt/package/iftop/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openwrt/package/iftop/Makefile b/openwrt/package/iftop/Makefile index 0ef5473..02e75ac 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) |