diff options
author | Ian Lance Taylor <ian@gcc.gnu.org> | 1993-10-11 19:36:17 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 1993-10-11 19:36:17 +0000 |
commit | d01b0b7c4ed8de405cf88f7ddc9d8786e924b429 (patch) | |
tree | 6ed42da20af9aec65c7f111457fcb00fd14dbc7f /gcc | |
parent | 10711bdd05d651d21f9b225f6f3880074f15615b (diff) | |
download | gcc-d01b0b7c4ed8de405cf88f7ddc9d8786e924b429.zip gcc-d01b0b7c4ed8de405cf88f7ddc9d8786e924b429.tar.gz gcc-d01b0b7c4ed8de405cf88f7ddc9d8786e924b429.tar.bz2 |
Fix typo
From-SVN: r5738
Diffstat (limited to 'gcc')
-rwxr-xr-x | gcc/fixincludes | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/fixincludes b/gcc/fixincludes index a99b3cf..9d536ff 100755 --- a/gcc/fixincludes +++ b/gcc/fixincludes @@ -478,7 +478,7 @@ fi # Fix AIX use of "XDPS.h" to refer to <DPS/XDPS.h> file=DPS/XDPSlib.h -if [ -r $file] && [ ! -r ${LIB}/$file ] ; then +if [ -r $file ] && [ ! -r ${LIB}/$file ] ; then cp $file ${LIB}/$file fi if [ -r ${LIB}/$file ] ; then |