diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-01-27 21:16:28 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-01-27 21:16:28 +0000 |
commit | fc7a332783029bbbcb10e1230b8162850ab451c7 (patch) | |
tree | 9bca0b1d738fd02492a58c037cff4703d57a7289 /gcc/fixincludes | |
parent | 1146f1792fe477843ab0726a5eb41234e9ddfa0d (diff) | |
download | gcc-fc7a332783029bbbcb10e1230b8162850ab451c7.tar.gz |
* fixincludes: Tweak fix for struct exception in math.h
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@17513 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/fixincludes')
-rwxr-xr-x | gcc/fixincludes | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/gcc/fixincludes b/gcc/fixincludes index 42d81b9161c..22d6c0e26a2 100755 --- a/gcc/fixincludes +++ b/gcc/fixincludes @@ -2822,21 +2822,25 @@ if [ -r ${LIB}/$file ]; then sed -e '/struct exception/i\ #ifdef __cplusplus\ #define exception __math_exception\ -#endif'\ +#endif +'\ -e '/struct exception/a\ #ifdef __cplusplus\ #undef exception\ -#endif' ${LIB}/$file > ${LIB}/${file}.sed +#endif +' ${LIB}/$file > ${LIB}/${file}.sed rm -f ${LIB}/$file; mv ${LIB}/${file}.sed ${LIB}/$file if egrep 'matherr()' ${LIB}/$file >/dev/null 2>&1; then sed -e '/matherr/i\ #ifdef __cplusplus\ #define exception __math_exception\ -#endif'\ +#endif +'\ -e '/matherr/a\ #ifdef __cplusplus\ #undef exception\ -#endif' ${LIB}/$file > ${LIB}/${file}.sed +#endif +' ${LIB}/$file > ${LIB}/${file}.sed rm -f ${LIB}/$file; mv ${LIB}/${file}.sed ${LIB}/$file fi if cmp $file ${LIB}/$file >/dev/null 2>&1; then |