From: Richard Stallman Date: Wed, 24 Jun 1992 20:21:08 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: misc/cutover-egcs-0~12653 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5959a6cddfe1a70d79dcd5de0fe4da1cc2efd059;p=thirdparty%2Fgcc.git *** empty log message *** From-SVN: r1278 --- diff --git a/gcc/fixincludes b/gcc/fixincludes index d46fc4f4f84d..55b75d779632 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`