diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-07-16 18:15:34 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-07-16 18:15:34 +0000 |
commit | 8a989129d6203edb576b9566f6511ec035203321 (patch) | |
tree | 6c59776d88aeed81a625394e29a9e6a4df5b28af /glibcbug.in | |
parent | d2afebcce46f40e9d96fc48e541aa5a6d8deac9b (diff) | |
download | glibc-8a989129d6203edb576b9566f6511ec035203321.tar glibc-8a989129d6203edb576b9566f6511ec035203321.tar.gz glibc-8a989129d6203edb576b9566f6511ec035203321.tar.bz2 glibc-8a989129d6203edb576b9566f6511ec035203321.zip |
Update.
2002-07-16 Ulrich Drepper <drepper@redhat.com>
* glibcbug.in: Fix little typo. Remove STDIO.
* config.h.in: Fail if __FAST_MATH__ is defined.
Diffstat (limited to 'glibcbug.in')
-rw-r--r-- | glibcbug.in | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/glibcbug.in b/glibcbug.in index b83e2bd475..37123b603f 100644 --- a/glibcbug.in +++ b/glibcbug.in @@ -21,11 +21,10 @@ BUILD_PROFILE="@profile@" BUILD_OMITFP="@omitfp@" BUILD_BOUNDED="@bounded@" BUILD_STATIC_NSS="@static_nss@" -STDIO="@stdio@" TEMP=`mktemp -q ${TMPDIR-/tmp}/glibcbugXXXXXX 2>/dev/null` if test $? -ne 0; then - TEMP={$TMPDIR-/tmp}/glibcbug.$$ + TEMP=${TMPDIR-/tmp}/glibcbug.$$ echo > $TEMP chmod 600 $TEMP fi @@ -163,7 +162,6 @@ ${ORGANIZATION- $ORGANIZATION_C} `[ -n "$BUILD_OMITFP" ] && echo Build omitfp: $BUILD_OMITFP` `[ -n "$BUILD_BOUNDED" ] && echo Build bounded: $BUILD_BOUNDED` `[ -n "$BUILD_STATIC_NSS" ] && echo Build static-nss: $BUILD_STATIC_NSS` -`[ -n "$STDIO" ] && echo Stdio: $STDIO` >Description: $DESCRIPTION_C |