diff options
author | Richard Stallman <rms@gnu.org> | 1992-06-25 04:03:11 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1992-06-25 04:03:11 +0000 |
commit | cd10f7b60831de7ea1077ad3249526809010d27a (patch) | |
tree | 96ec69db3c6ae597565dbec74ac21a4f83af8af5 | |
parent | 08af8e094f5a13d5e80823f2b6c239c68533bb53 (diff) | |
download | gcc-cd10f7b60831de7ea1077ad3249526809010d27a.zip gcc-cd10f7b60831de7ea1077ad3249526809010d27a.tar.gz gcc-cd10f7b60831de7ea1077ad3249526809010d27a.tar.bz2 |
*** empty log message ***
From-SVN: r1280
-rwxr-xr-x | gcc/fixincludes | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/fixincludes b/gcc/fixincludes index 55b75d7..7da07ee 100755 --- a/gcc/fixincludes +++ b/gcc/fixincludes @@ -680,14 +680,14 @@ fi # These two files on SunOS 4 are included by other files # in the same directory, using "...". So we must make sure they exist -# in the same directory as the fixed other files. -if [ -r ${LIB}/multimedia/audio_errno.h ] +# in the same directory as the other fixed files. +if [ -r ${INPUT}/multimedia/audio_errno.h ] then - ln -s ${LIB}/multimedia/audio_errno.h multimedia 2>/dev/null + ln -s ${INPUT}/multimedia/audio_errno.h ${LIB}/multimedia 2>/dev/null fi -if [ -r ${LIB}/multimedia/audio_hdr.h ] +if [ -r ${INPUT}/multimedia/audio_hdr.h ] then - ln -s ${LIB}/multimedia/audio_hdr.h multimedia 2>/dev/null + ln -s ${INPUT}/multimedia/audio_hdr.h ${LIB}/multimedia 2>/dev/null fi echo 'Removing unneeded directories:' |