diff options
author | Jim Wilson <wilson@gcc.gnu.org> | 1993-01-05 19:01:33 -0800 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1993-01-05 19:01:33 -0800 |
commit | 8739838dfbcbb0ffbc05cbe7839c0acea4238ca8 (patch) | |
tree | b8b5c7d1445742841580786f2cc3b8d96ee95e8e | |
parent | 85ec8ec452f6c230963a0bb38401729abfa43c64 (diff) | |
download | gcc-8739838dfbcbb0ffbc05cbe7839c0acea4238ca8.zip gcc-8739838dfbcbb0ffbc05cbe7839c0acea4238ca8.tar.gz gcc-8739838dfbcbb0ffbc05cbe7839c0acea4238ca8.tar.bz2 |
(Xmu.h): Add missing ${LIB}/.
From-SVN: r3109
-rwxr-xr-x | gcc/fixincludes | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/fixincludes b/gcc/fixincludes index ec8c4ca7..1e70518 100755 --- a/gcc/fixincludes +++ b/gcc/fixincludes @@ -503,7 +503,7 @@ if [ -r ${LIB}/$file ]; then echo Fixing $file sprintf declaration sed -e 's,^extern char \* sprintf();$,#ifndef __STDC__\ extern char * sprintf();\ -#endif /* !defined __STDC__ */,' ${LIB}/$file > ${file}.sed +#endif /* !defined __STDC__ */,' ${LIB}/$file > ${LIB}/${file}.sed rm -f ${LIB}/$file; mv ${LIB}/${file}.sed ${LIB}/$file if cmp $file ${LIB}/$file >/dev/null 2>&1; then rm ${LIB}/$file @@ -524,7 +524,7 @@ if [ -r ${LIB}/$file ]; then echo Fixing $file sprintf declaration sed -e 's,^extern char \* sprintf();$,#ifndef __STDC__\ extern char * sprintf();\ -#endif /* !defined __STDC__ */,' ${LIB}/$file > ${file}.sed +#endif /* !defined __STDC__ */,' ${LIB}/$file > ${LIB}/${file}.sed rm -f ${LIB}/$file; mv ${LIB}/${file}.sed ${LIB}/$file if cmp $file ${LIB}/$file >/dev/null 2>&1; then rm ${LIB}/$file |