diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-04-07 15:41:36 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-04-07 15:41:36 +0000 |
commit | 6916c5e1fa03596836767d10648a26eff9d6a8e2 (patch) | |
tree | 1afe49cb8c8096ab7f32754c90581d5961bf14d6 /glibcbug.in | |
parent | 4bca4c174852bfc348f99e85684fc8f65631d125 (diff) | |
download | glibc-6916c5e1fa03596836767d10648a26eff9d6a8e2.tar.gz |
Update.
1998-04-07 17:50 Zack Weinberg <zack@rabi.phys.columbia.edu>
* glibcbug.in: Report version of gcc in use. Remove unused variable
ENVIRONMENT.
1998-04-07 Gordon Matzigkeit <gord@profitpress.com>
* aclocal.m4 (LIBC_PROG_BINUTILS): Use `-print-prog-name', not
`-print-file-name' to find as and ld.
1998-04-07 Ulrich Drepper <drepper@cygnus.com>
* sysdeps/posix/mkstemp.c (mkstemp): Correct return value in case
template is wrong. Remove unused varaible `ignored'.
1998-04-07 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* libc.map: Export __libc_sa_len.
* iconv/gconv_conf.c (MAXPATHLEN): Define correctly.
Diffstat (limited to 'glibcbug.in')
-rw-r--r-- | glibcbug.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/glibcbug.in b/glibcbug.in index c915f34f04..0ad6ac45d6 100644 --- a/glibcbug.in +++ b/glibcbug.in @@ -76,7 +76,6 @@ else # and to protect shell metacharacters in the expansion of $LOGNAME $PASSWD | grep "^$LOGNAME:" | awk -F: '{print $5}' | sed -e 's/,.*//' > $TEMP ORIGINATOR="`cat $TEMP`" - rm -f $TEMP fi if [ -n "$ORGANIZATION" ]; then @@ -107,6 +106,7 @@ SYSTEM=`( [ -f /bin/uname ] && /bin/uname -a ) || \ ( [ -f /usr/bin/uname ] && /usr/bin/uname -a ) || echo ""` ARCH=`[ -f /bin/arch ] && /bin/arch` MACHINE=`[ -f /bin/machine ] && /bin/machine` +CCVERSION=`$CC -v 2>&1 | sed -n 's/gcc version //p'` ORGANIZATION_C='<organization of PR author (multiple lines)>' SYNOPSIS_C='<synopsis of the problem (one line)>' @@ -149,7 +149,8 @@ ${ORGANIZATION- $ORGANIZATION_C} `[ -n "$ADDONS" ] && echo Addons: $ADDONS` `[ -n "$CFLAGS" ] && echo Build CFLAGS: $CFLAGS` `[ -n "$CC" ] && echo Build CC: $CC` -`[ -n "$VERSIONING" ] && echo Versioning: $VERSIONING` +`[ -n "$CCVERSION" ] && echo Compiler version: $CCVERSION` +`[ -n "$VERSIONING" ] && echo Symbol versioning: $VERSIONING` `[ -n "$BUILD_STATIC" ] && echo Build static: $BUILD_STATIC` `[ -n "$BUILD_SHARED" ] && echo Build shared: $BUILD_SHARED` `[ -n "$BUILD_PIC_DEFAULT" ] && echo Build pic-default: $BUILD_PIC_DEFAULT` |