From: Ian Lance Taylor Date: Sun, 8 Aug 1999 15:36:13 +0000 (+0000) Subject: From Eli Zaretskii : X-Git-Tag: gdb-1999-08-09~36 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6ca3858e7c49e2972850222991576d0774f9aa1b;p=platform%2Fupstream%2Fbinutils.git From Eli Zaretskii : * configure (tmpfile): Change cONf$$ to cNf$$ to avoid an overly long file name when using DJGPP on MS-DOS. --- diff --git a/ChangeLog b/ChangeLog index f4d74ad..cad865f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +1999-08-08 Ian Lance Taylor + + From Eli Zaretskii : + * configure (tmpfile): Change cONf$$ to cNf$$ to avoid an overly + long file name when using DJGPP on MS-DOS. + 1999-07-30 Alan Modra * Makefile.in (check-target-libio): Remove all-target-libstdc++ diff --git a/configure b/configure index e51ca9f..bc7b650 100755 --- a/configure +++ b/configure @@ -655,8 +655,8 @@ case "${TMPDIR}" in *) ;; esac -# keep this filename short for &%*%$*# 14 char file names -tmpfile=${TMPDIR}/cONf$$ +# keep this filename short for &%*%$*# 14 char file names and 8+3 file names +tmpfile=${TMPDIR}/cNf$$ # Note that under many versions of sh a trap handler for 0 will *override* any # exit status you explicitly specify! At this point, the only non-error exit # is at the end of the script; these actions are duplicated there, minus