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

From-SVN: r26894
This commit is contained in:
Jeffrey A Law 1999-05-11 23:45:59 +00:00 committed by Jeff Law
parent 49da3efb1d
commit fa27306655
2 changed files with 5 additions and 3 deletions

View File

@ -1,5 +1,7 @@
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
whitespace characters between the "define" and the name of the macro.
* fixinc/fixincl.x, fixinc/inclhack.sh: Rebuilt.

View File

@ -94,7 +94,7 @@ fi
if [ \! -d $abs_target_dir ] ; then
echo $progname\: creating directory $rel_target_dir
mkdir $abs_target_dir
mkdir -p $abs_target_dir
fi
echo $progname\: populating \`$rel_target_dir\'
@ -175,7 +175,7 @@ for code in ALL STD ; do
abs_target_subdir=${abs_target_dir}/${rel_source_subdir}
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"
fi
fi
@ -202,7 +202,7 @@ for code in ALL STD ; do
# Create the dir where this file will go when fixed.
xxdir=`echo ./$file | sed -e 's|/[^/]*$||'`
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"
fi
fi