summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@airs.com>1999-08-08 15:36:13 +0000
committerIan Lance Taylor <ian@airs.com>1999-08-08 15:36:13 +0000
commitb29dc4149caab97ca10f536a9909d7255a06be6d (patch)
treed038f6ea5ae46f24305ccf1b70d210832d4f3140
parent651fd56d1e09791b06592e1348d5d629b6918bc7 (diff)
downloadgdb-b29dc4149caab97ca10f536a9909d7255a06be6d.tar.gz
From Eli Zaretskii <eliz@is.elta.co.il>:
* configure (tmpfile): Change cONf$$ to cNf$$ to avoid an overly long file name when using DJGPP on MS-DOS.
-rw-r--r--ChangeLog6
-rwxr-xr-xconfigure4
2 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index f4d74ad5302..cad865ffa11 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+1999-08-08 Ian Lance Taylor <ian@zembu.com>
+
+ From Eli Zaretskii <eliz@is.elta.co.il>:
+ * configure (tmpfile): Change cONf$$ to cNf$$ to avoid an overly
+ long file name when using DJGPP on MS-DOS.
+
1999-07-30 Alan Modra <alan@spri.levels.unisa.edu.au>
* Makefile.in (check-target-libio): Remove all-target-libstdc++
diff --git a/configure b/configure
index e51ca9fc124..bc7b6504065 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