mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-10 07:46:41 +08:00
* fixproto: Change "mkdir" calls to "mkdir -p"
From-SVN: r26894
This commit is contained in:
parent
49da3efb1d
commit
fa27306655
@ -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.
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user