diff options
author | korbb <korbb@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-06-18 12:44:14 +0000 |
---|---|---|
committer | korbb <korbb@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-06-18 12:44:14 +0000 |
commit | 345949ce1faff0d477227c360bcc4b647b7d7473 (patch) | |
tree | a0e0e0d458748f5f6dc816fde46575f7bc2f4fef /gcc/fixinc | |
parent | d58f8379a991293869d296eb6dfd746954925550 (diff) | |
download | ppe42-gcc-345949ce1faff0d477227c360bcc4b647b7d7473.tar.gz ppe42-gcc-345949ce1faff0d477227c360bcc4b647b7d7473.zip |
Scripts must end with a new-line
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@27596 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/fixinc')
-rw-r--r-- | gcc/fixinc/fixincl.x | 2 | ||||
-rw-r--r-- | gcc/fixinc/inclhack.def | 2 | ||||
-rwxr-xr-x | gcc/fixinc/inclhack.sh | 6 |
3 files changed, 5 insertions, 5 deletions
diff --git a/gcc/fixinc/fixincl.x b/gcc/fixinc/fixincl.x index c9a43cc697c..f43840cf47c 100644 --- a/gcc/fixinc/fixincl.x +++ b/gcc/fixinc/fixincl.x @@ -668,7 +668,7 @@ typedef char * va_list;\n\ #endif /* __LINT__ */\n\ #endif /* !(defined(_VA_LIST) || defined(_VA_LIST_)) */\n\ #endif /* #ifndef __INT_VARARGS_H */\n\ -_EOF_", +_EOF_\n", (char*)NULL }; /* * * * * * * * * * * * * * * * * * * * * * * * * * diff --git a/gcc/fixinc/inclhack.def b/gcc/fixinc/inclhack.def index 13379c7f58a..5f852236062 100644 --- a/gcc/fixinc/inclhack.def +++ b/gcc/fixinc/inclhack.def @@ -332,7 +332,7 @@ typedef char * va_list; \#endif /* __LINT__ */ \#endif /* !(defined(_VA_LIST) || defined(_VA_LIST_)) */ \#endif /* #ifndef __INT_VARARGS_H */ -_EOF_"; +_EOF_\n"; }; diff --git a/gcc/fixinc/inclhack.sh b/gcc/fixinc/inclhack.sh index 751a1763edd..acd46d92fdb 100755 --- a/gcc/fixinc/inclhack.sh +++ b/gcc/fixinc/inclhack.sh @@ -817,7 +817,8 @@ typedef char * va_list; #endif /* __LINT__ */ #endif /* !(defined(_VA_LIST) || defined(_VA_LIST_)) */ #endif /* #ifndef __INT_VARARGS_H */ -_EOF_ ) < $infile > ${DESTDIR}/fixinc.tmp +_EOF_ + ) < $infile > ${DESTDIR}/fixinc.tmp # Shell scripts have the potential of removing the output # We interpret that to mean the file is not to be altered @@ -847,8 +848,7 @@ _EOF_ ) < $infile > ${DESTDIR}/fixinc.tmp < $infile > ${DESTDIR}/fixinc.tmp rm -f ${DESTFILE} mv -f ${DESTDIR}/fixinc.tmp ${DESTFILE} - fi # end of selection 'if' - + fi # if test # # Fix 19: Ecd_Cursor |