This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc project.
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |
| Other format: | [Raw text] | |
Hi!
On 29 Oct 2012 18:43:02 -0000, sje@sourceware.org wrote:
> http://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=48b76e2d045df12778dc0fb0b1e8f4e413a9373f
>
> commit 48b76e2d045df12778dc0fb0b1e8f4e413a9373f
> Author: Steve Ellcey <sellcey@mips.com>
> Date: Mon Oct 29 11:42:39 2012 -0700
>
> 2012-10-29 Steve Ellcey <sellcey@mips.com>
>
> * sysdeps/unix/sysv/linux/mips/mips32/Makefile: Remove.
> * sysdeps/unix/sysv/linux/mips/mips64/n32/Makefile: Remove.
> * sysdeps/unix/sysv/linux/mips/mips64/n64/Makefile: Remove.
> * sysdeps/unix/sysv/linux/mips/configure.in: Create default_abi.make.
> * sysdeps/unix/sysv/linux/mips/configure: Regenerate.
When regenerating all configure files with stock Autoconf 2.68, I get the
following delta:
$ (PATH=$HOME/tmp/source/autoconf/v2.68.build.install/bin:$PATH; find -name configure.in | while read f; do autoconf "$f" > "${f%.in}" || echo >&2 "### $f failed"; done)
diff --git ports/sysdeps/unix/sysv/linux/mips/configure ports/sysdeps/unix/sysv/linux/mips/configure
index 36757e8..cecfc9d 100644
--- ports/sysdeps/unix/sysv/linux/mips/configure
+++ ports/sysdeps/unix/sysv/linux/mips/configure
@@ -60,7 +60,7 @@ fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
if test -z "$libc_mips_abi"; then
- as_fn_error "could not determine what ABI the compiler is using" "$LINENO" 5
+ as_fn_error $? "could not determine what ABI the compiler is using" "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -102,7 +102,7 @@ fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
if test -z "$libc_mips_float"; then
- as_fn_error "could not determine if compiler is using hard or soft floating point ABI" "$LINENO" 5
+ as_fn_error $? "could not determine if compiler is using hard or soft floating point ABI" "$LINENO" 5
fi
echo "default-abi := ${libc_mips_abi}_${libc_mips_float}" > default-abi.make
Comparing to other as_fn_error usage, it seems I should commit this as
obvious, but I'd like to understand why you got different results when
regenerating that file.
GrÃÃe,
Thomas
Attachment:
pgp00000.pgp
Description: PGP signature
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |