Commit fa273066 by Jeffrey A Law Committed by Jeff Law

* fixproto: Change "mkdir" calls to "mkdir -p"

From-SVN: r26894
parent 49da3efb
Tue May 11 23:55:49 1999 Jeffrey A Law (law@cygnus.com) Tue May 11 23:55:49 1999 Jeffrey A Law (law@cygnus.com)
* fixproto: Change "mkdir" calls to "mkdir -p"
* fixinc/inclhack.def (io_def_quotes): Consistently allow multiple * fixinc/inclhack.def (io_def_quotes): Consistently allow multiple
whitespace characters between the "define" and the name of the macro. whitespace characters between the "define" and the name of the macro.
* fixinc/fixincl.x, fixinc/inclhack.sh: Rebuilt. * fixinc/fixincl.x, fixinc/inclhack.sh: Rebuilt.
......
...@@ -94,7 +94,7 @@ fi ...@@ -94,7 +94,7 @@ fi
if [ \! -d $abs_target_dir ] ; then if [ \! -d $abs_target_dir ] ; then
echo $progname\: creating directory $rel_target_dir echo $progname\: creating directory $rel_target_dir
mkdir $abs_target_dir mkdir -p $abs_target_dir
fi fi
echo $progname\: populating \`$rel_target_dir\' echo $progname\: populating \`$rel_target_dir\'
...@@ -175,7 +175,7 @@ for code in ALL STD ; do ...@@ -175,7 +175,7 @@ for code in ALL STD ; do
abs_target_subdir=${abs_target_dir}/${rel_source_subdir} abs_target_subdir=${abs_target_dir}/${rel_source_subdir}
if [ \! -d $abs_target_subdir ] ; then if [ \! -d $abs_target_subdir ] ; then
if mkdir $abs_target_subdir ; then if mkdir -p $abs_target_subdir ; then
subdirs_made="$abs_target_subdir $subdirs_made" subdirs_made="$abs_target_subdir $subdirs_made"
fi fi
fi fi
...@@ -202,7 +202,7 @@ for code in ALL STD ; do ...@@ -202,7 +202,7 @@ for code in ALL STD ; do
# Create the dir where this file will go when fixed. # Create the dir where this file will go when fixed.
xxdir=`echo ./$file | sed -e 's|/[^/]*$||'` xxdir=`echo ./$file | sed -e 's|/[^/]*$||'`
if [ \! -d $abs_target_subdir/$xxdir ] ; then if [ \! -d $abs_target_subdir/$xxdir ] ; then
if mkdir $abs_target_subdir/$xxdir ; then if mkdir -p $abs_target_subdir/$xxdir ; then
subdirs_made="$abs_target_subdir/$xxdir $subdirs_made" subdirs_made="$abs_target_subdir/$xxdir $subdirs_made"
fi fi
fi fi
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment