summaryrefslogtreecommitdiff
path: root/glibcbug.in
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2002-02-14 01:02:42 +0000
committerUlrich Drepper <drepper@redhat.com>2002-02-14 01:02:42 +0000
commit736ab899c4ab56dea0d329583f73e3f2b54a1dc1 (patch)
treea8da2935bd064d68d6cf060afb9dd7ef0debeaa9 /glibcbug.in
parentbf1097cb3b48059b37dd0fb140f329a26a54af0d (diff)
Update.
* po/da.po: Update from translation team. * locale/categories.def: Fix typo [PR libc/2948]. * po/Makefile (BROKEN_LINGUAS): Works with current gettext [PR libc/2949]. * locale/iso-4217.def: Update from official version [PR libc/2950]. * glibcbug.in: Honor TMPDIR [PR libc/2951]. * locale/programs/ld-collate.c (collate_finish): Bail out with a message if input is too confusion instead of using assert. (collate_read): Don't crash on unknown symbol [PR libc/2952]. Patches by Alastair McKinstry <alastair@pdd.3com.com>.
Diffstat (limited to 'glibcbug.in')
-rw-r--r--glibcbug.in8
1 files changed, 4 insertions, 4 deletions
diff --git a/glibcbug.in b/glibcbug.in
index db986b9e87..b83e2bd475 100644
--- a/glibcbug.in
+++ b/glibcbug.in
@@ -23,15 +23,15 @@ BUILD_BOUNDED="@bounded@"
BUILD_STATIC_NSS="@static_nss@"
STDIO="@stdio@"
-TEMP=`mktemp -q /tmp/glibcbugXXXXXX 2>/dev/null`
+TEMP=`mktemp -q ${TMPDIR-/tmp}/glibcbugXXXXXX 2>/dev/null`
if test $? -ne 0; then
- TEMP=/tmp/glibcbug.$$
+ TEMP={$TMPDIR-/tmp}/glibcbug.$$
echo > $TEMP
chmod 600 $TEMP
fi
-TEMPx=`mktemp -q /tmp/glibcbugXXXXXX 2>/dev/null`
+TEMPx=`mktemp -q ${TMPDIR-/tmp}/glibcbugXXXXXX 2>/dev/null`
if test $? -ne 0; then
- TEMPx=/tmp/glibcbug.$$.x
+ TEMPx=${TMPDIR-/tmp}/glibcbug.$$.x
echo > $TEMPx
chmod 600 $TEMPx
fi