From: Ian Lance Taylor Date: Fri, 17 Jun 1994 19:06:33 +0000 (+0000) Subject: Correct math.h handling on Lynx again. X-Git-Tag: misc/cutover-egcs-0~6432 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d67342cd3d06e760964925fb24291d3aad740894;p=thirdparty%2Fgcc.git Correct math.h handling on Lynx again. From-SVN: r7511 --- diff --git a/gcc/fixincludes b/gcc/fixincludes index bee61d2d0c13..323ccaca3504 100755 --- a/gcc/fixincludes +++ b/gcc/fixincludes @@ -1395,10 +1395,10 @@ if [ -r ${LIB}/$file ]; then dbl_max_def=`echo $dbl_max_def | sed 's/.*define[ ]*DBL_MAX[ ]*//'` sed -e "/define[ ]HUGE_VAL[ ]DBL_MAX/s/DBL_MAX/$dbl_max_def/" \ ${LIB}/$file > ${LIB}/${file}.sed + rm -f ${LIB}/$file; mv ${LIB}/${file}.sed ${LIB}/$file fi fi fi - rm -f ${LIB}/$file; mv ${LIB}/${file}.sed ${LIB}/$file if cmp $file ${LIB}/$file >/dev/null 2>&1; then echo Deleting ${LIB}/$file\; no fixes were needed.