diff options
author | Bruce Korb <korbb@gcc.gnu.org> | 1999-03-29 08:28:23 +0000 |
---|---|---|
committer | Bruce Korb <korbb@gcc.gnu.org> | 1999-03-29 08:28:23 +0000 |
commit | 7bf4ef916fe01e2a10d7954a92adac9455890756 (patch) | |
tree | 26186e15d11df18ce1eed93925da8f4503d7fdda | |
parent | 163869506cbea3e130a9c303c3aeccc11cd97b54 (diff) | |
download | gcc-7bf4ef916fe01e2a10d7954a92adac9455890756.zip gcc-7bf4ef916fe01e2a10d7954a92adac9455890756.tar.gz gcc-7bf4ef916fe01e2a10d7954a92adac9455890756.tar.bz2 |
Portability problem with old BSD system
From-SVN: r26052
-rwxr-xr-x | gcc/fixinc/mkfixinc.sh | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/gcc/fixinc/mkfixinc.sh b/gcc/fixinc/mkfixinc.sh index 1298acc..9f330eb8 100755 --- a/gcc/fixinc/mkfixinc.sh +++ b/gcc/fixinc/mkfixinc.sh @@ -103,10 +103,7 @@ esac # if test -z "$fixincludes" then - cat > ${target} <<- _EOF_ - #! /bin/sh - exit 0 - _EOF_ + (echo "#! /bin/sh" ; echo "exit 0" ) > ${target} exit 0 fi |