summaryrefslogtreecommitdiff
path: root/INSTALL.sh
diff options
context:
space:
mode:
authortmu <tmu>2001-01-31 10:42:50 +0000
committertmu <tmu>2001-01-31 10:42:50 +0000
commit11e18cf365bda757747253d9ea88ba0dfd2ccc29 (patch)
tree4e662b1a31cc7ce5a77cfd38de290f81519f17fc /INSTALL.sh
parent57df314842cb2e7169e6a8442f4750a678d05ea9 (diff)
downloadfml8-11e18cf365bda757747253d9ea88ba0dfd2ccc29.tar.gz
fml8-11e18cf365bda757747253d9ea88ba0dfd2ccc29.tar.bz2
fml8-11e18cf365bda757747253d9ea88ba0dfd2ccc29.zip
mkdir -p option add for no parent directorys at first install
Diffstat (limited to 'INSTALL.sh')
-rwxr-xr-xINSTALL.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/INSTALL.sh b/INSTALL.sh
index 75aa9ed3..d33ed378 100755
--- a/INSTALL.sh
+++ b/INSTALL.sh
@@ -34,7 +34,7 @@ owner=fukachan
_mkdir () {
local dir=$1
echo mkdir $dir;
- test -d $dir || mkdir $dir
+ test -d $dir || mkdir -p $dir
}