aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Stallman <rms@gnu.org>1992-06-24 20:21:08 +0000
committerRichard Stallman <rms@gnu.org>1992-06-24 20:21:08 +0000
commit5959a6cddfe1a70d79dcd5de0fe4da1cc2efd059 (patch)
treec47d6bb9560aac75ed71969d55b53b271d26ee02
parentad5a6adc10dde25de68b106c88edbeb34095a5f1 (diff)
downloadgcc-5959a6cddfe1a70d79dcd5de0fe4da1cc2efd059.zip
gcc-5959a6cddfe1a70d79dcd5de0fe4da1cc2efd059.tar.gz
gcc-5959a6cddfe1a70d79dcd5de0fe4da1cc2efd059.tar.bz2
*** empty log message ***
From-SVN: r1278
-rwxr-xr-xgcc/fixincludes12
1 files changed, 12 insertions, 0 deletions
diff --git a/gcc/fixincludes b/gcc/fixincludes
index d46fc4f..55b75d7 100755
--- a/gcc/fixincludes
+++ b/gcc/fixincludes
@@ -678,6 +678,18 @@ if [ -r ${LIB}/$file ]; then
fi
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 ]
+then
+ ln -s ${LIB}/multimedia/audio_errno.h multimedia 2>/dev/null
+fi
+if [ -r ${LIB}/multimedia/audio_hdr.h ]
+then
+ ln -s ${LIB}/multimedia/audio_hdr.h multimedia 2>/dev/null
+fi
+
echo 'Removing unneeded directories:'
cd $LIB
files=`find . -type d -print | sort -r`