aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Wilson <wilson@gcc.gnu.org>1993-07-21 14:04:54 -0700
committerJim Wilson <wilson@gcc.gnu.org>1993-07-21 14:04:54 -0700
commit1f1ff018a2faa49d0d68d936521bd4fbf8891d45 (patch)
tree59b0cc1de68a8347e86ff1301065a02e5c5bd1e6
parent1e7932927154f81c5899e86fe0ccf0e3e3e18f78 (diff)
downloadgcc-1f1ff018a2faa49d0d68d936521bd4fbf8891d45.zip
gcc-1f1ff018a2faa49d0d68d936521bd4fbf8891d45.tar.gz
gcc-1f1ff018a2faa49d0d68d936521bd4fbf8891d45.tar.bz2
(sys/types.h sys/stdtypes.h): Delete newline before do.
(machine/cpu.h): Delete space in `2>& 1'. From-SVN: r4953
-rwxr-xr-xgcc/fixincludes5
1 files changed, 2 insertions, 3 deletions
diff --git a/gcc/fixincludes b/gcc/fixincludes
index 05758ce..4ede9ff 100755
--- a/gcc/fixincludes
+++ b/gcc/fixincludes
@@ -331,8 +331,7 @@ done
cd ${INPUT}
# Install the proper definition of size_t in header files that it comes from.
-for file in sys/types.h stdlib.h sys/stdtypes.h;
-do
+for file in sys/types.h stdlib.h sys/stdtypes.h; do
if [ -r $file ] && [ ! -r ${LIB}/$file ]; then
cp $file ${LIB}/$file >/dev/null 2>&1 || echo "Can't copy $file"
chmod +w ${LIB}/$file 2>/dev/null
@@ -549,7 +548,7 @@ if [ -r ${LIB}/$file ]; then
rm ${LIB}/$file
else
# This file has an alternative name, mips/cpu.h. Fix that name, too.
- if cmp machine/cpu.h mips/cpu.h > /dev/null 2>& 1; then
+ if cmp machine/cpu.h mips/cpu.h > /dev/null 2>&1; then
mkdir ${LIB}/mips 2>&-
ln ${LIB}/$file ${LIB}/mips/cpu.h
fi