[SCM] GNU Libtool branch, master, updated. v2.4.3-28-g8144343

2014-11-04 Thread Gary V. Vaughan
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project GNU Libtool.

The branch, master has been updated
   via  81443430bb14398f801f48d3c3df55f711989064 (commit)
   via  8d6b55e65c5449d50880fc2d100099bffcd8bc6e (commit)
  from  b5324008d12ba59df83be6100e6f0359eeb0f75d (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit 81443430bb14398f801f48d3c3df55f711989064
Author: Gary V. Vaughan g...@gnu.org
Date:   Tue Nov 4 18:09:32 2014 +

tests: update fat binary test case for modern darwin.

* tests/darwin.at: Use -arch x86_64, which works on modern
Apple hardware, rather than -arch ppc, which generally does not.

Signed-off-by: Gary V. Vaughan g...@gnu.org

commit 8d6b55e65c5449d50880fc2d100099bffcd8bc6e
Author: Gary V. Vaughan g...@gnu.org
Date:   Tue Nov 4 18:05:42 2014 +

tests: fix false positive in failed test check for cmdline_wrap.at.

* tests/cmdline_wrap.at (fail_list): non-matching globs return as
a plain unexpanded string, so we also need to test for file
existence before expanding into fail_list.

Signed-off-by: Gary V. Vaughan g...@gnu.org

---

Summary of changes:
 tests/cmdline_wrap.at |3 ++-
 tests/darwin.at   |   16 
 2 files changed, 10 insertions(+), 9 deletions(-)

diff --git a/tests/cmdline_wrap.at b/tests/cmdline_wrap.at
index c44e1d0..2ee7b43 100644
--- a/tests/cmdline_wrap.at
+++ b/tests/cmdline_wrap.at
@@ -28,7 +28,8 @@
 AT_SETUP([Run tests with low max_cmd_len])
 AT_KEYWORDS([recursive expensive])
 dnl If we already have failures, then reruns will fail too!
-fail_list=`for f in ?/fail ??/fail ???/fail /fail; do echo $f; done`
+fail_list=`for f in ?/fail ??/fail ???/fail /fail; do test -f $f  echo 
$f; done`
+echo DEBUG: fail_list='$fail_list'
 AT_CHECK([test -z $fail_list || (exit 77)])
 m4_ifdef([AT_CAPTURE_FILE],
 [AT_CAPTURE_FILE([testsuite.log])])
diff --git a/tests/darwin.at b/tests/darwin.at
index 9e4bd47..95b4069 100644
--- a/tests/darwin.at
+++ b/tests/darwin.at
@@ -35,7 +35,7 @@ int main() { return 0;}
 ]])
 
 $noskip  {
-$CC $CPPFLAGS $CFLAGS -arch ppc -arch i386 -o simple simple.c 21  /dev/null 
|| noskip=false
+$CC $CPPFLAGS $CFLAGS -arch x86_64 -arch i386 -o simple simple.c 21  
/dev/null || noskip=false
 rm -f simple
 }
 
@@ -82,19 +82,19 @@ save_PATH=$PATH
 PATH=`pwd`/bin:$PATH
 export PATH
 
-AT_CHECK([$LIBTOOL --mode=compile --tag=CC $CC -c -o foo.lo $CPPFLAGS $CFLAGS 
-arch ppc -arch i386 foo.c],[0],[ignore],[ignore])
+AT_CHECK([$LIBTOOL --mode=compile --tag=CC $CC -c -o foo.lo $CPPFLAGS $CFLAGS 
-arch x86_64 -arch i386 foo.c],[0],[ignore],[ignore])
 
-AT_CHECK([$LIBTOOL --mode=compile --tag=CC $CC -c -o baz.lo $CPPFLAGS $CFLAGS 
-arch ppc -arch i386 baz.c],[0],[ignore],[ignore])
+AT_CHECK([$LIBTOOL --mode=compile --tag=CC $CC -c -o baz.lo $CPPFLAGS $CFLAGS 
-arch x86_64 -arch i386 baz.c],[0],[ignore],[ignore])
 
-AT_CHECK([$LIBTOOL --mode=link --tag=CC $CC -o libfoo.la $CPPFLAGS $CFLAGS 
$LDFLAGS -arch ppc -arch i386 foo.lo baz.lo],[0],[ignore],[ignore])
+AT_CHECK([$LIBTOOL --mode=link --tag=CC $CC -o libfoo.la $CPPFLAGS $CFLAGS 
$LDFLAGS -arch x86_64 -arch i386 foo.lo baz.lo],[0],[ignore],[ignore])
 
-AT_CHECK([$LIBTOOL --mode=compile --tag=CC $CC -c -o bar.lo $CPPFLAGS $CFLAGS 
-arch ppc -arch i386 bar.c],[0],[ignore],[ignore])
+AT_CHECK([$LIBTOOL --mode=compile --tag=CC $CC -c -o bar.lo $CPPFLAGS $CFLAGS 
-arch x86_64 -arch i386 bar.c],[0],[ignore],[ignore])
 
-AT_CHECK([$LIBTOOL --mode=link --tag=CC $CC  -o libbar.la $CPPFLAGS $CFLAGS 
$LDFLAGS -arch ppc -arch i386 bar.lo libfoo.la -rpath 
/nonexistent],[0],[ignore],[ignore])
+AT_CHECK([$LIBTOOL --mode=link --tag=CC $CC  -o libbar.la $CPPFLAGS $CFLAGS 
$LDFLAGS -arch x86_64 -arch i386 bar.lo libfoo.la -rpath 
/nonexistent],[0],[ignore],[ignore])
 
-AT_CHECK([$LIBTOOL --mode=compile --tag=CC $CC -c -o main.lo $CPPFLAGS $CFLAGS 
-arch ppc -arch i386 main.c],[0],[ignore],[ignore])
+AT_CHECK([$LIBTOOL --mode=compile --tag=CC $CC -c -o main.lo $CPPFLAGS $CFLAGS 
-arch x86_64 -arch i386 main.c],[0],[ignore],[ignore])
 
-AT_CHECK([$LIBTOOL --mode=link --tag=CC $CC  -o main$EXEEXT $CPPFLAGS $CFLAGS 
$LDFLAGS -arch ppc -arch i386 main.lo libbar.la],[0],[ignore],[ignore])
+AT_CHECK([$LIBTOOL --mode=link --tag=CC $CC  -o main$EXEEXT $CPPFLAGS $CFLAGS 
$LDFLAGS -arch x86_64 -arch i386 main.lo libbar.la],[0],[ignore],[ignore])
 
 PATH=$save_PATH
 AT_CLEANUP


hooks/post-receive
-- 
GNU Libtool



[SCM] GNU Libtool branch, master, updated. v2.4.3-29-g3881e49

2014-11-04 Thread Gary V. Vaughan
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project GNU Libtool.

The branch, master has been updated
   via  3881e49841491b0a9c97d97b1195c73a5ad0fa68 (commit)
  from  81443430bb14398f801f48d3c3df55f711989064 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit 3881e49841491b0a9c97d97b1195c73a5ad0fa68
Author: Gary V. Vaughan g...@gnu.org
Date:   Tue Nov 4 20:11:49 2014 +

libtool: fix universal library building on darwin.

* build-aux/ltmain.in (func_extract_archives): $basename is now
spelled $sed_basename.
* NO-THANKS: Update.
Reported by Misty De Meo

Signed-off-by: Gary V. Vaughan g...@gnu.org

---

Summary of changes:
 NO-THANKS   |1 +
 build-aux/ltmain.in |2 +-
 2 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/NO-THANKS b/NO-THANKS
index 2bed9cc..b67d291 100644
--- a/NO-THANKS
+++ b/NO-THANKS
@@ -106,6 +106,7 @@ Martin Doucha   dou...@integri.cz
 Matthijs Kooijman  matth...@stdin.nl
 Micheal E. Faenza  mfae...@mitre.org
 Mike Millermtmil...@ieee.org
+Misty De Meo   mi...@brew.sh
 Nick Bowlernbow...@draconx.ca
 Nixn...@esperi.org.uk
 Olaf Lenz  ol...@fias.uni-frankfurt.de
diff --git a/build-aux/ltmain.in b/build-aux/ltmain.in
index 65ada0b..85e2809 100644
--- a/build-aux/ltmain.in
+++ b/build-aux/ltmain.in
@@ -3249,7 +3249,7 @@ func_extract_archives ()
  $RM 
unfat-$$/$darwin_base_archive-$darwin_arch/$darwin_base_archive
done # $darwin_arches
 ## Okay now we've a bunch of thin objects, gotta fatten them up :)
-   darwin_filelist=`find unfat-$$ -type f -name \*.o -print -o -name 
\*.lo -print | $SED -e $basename | sort -u`
+   darwin_filelist=`find unfat-$$ -type f -name \*.o -print -o -name 
\*.lo -print | $SED -e $sed_basename | sort -u`
darwin_file=
darwin_files=
for darwin_file in $darwin_filelist; do


hooks/post-receive
-- 
GNU Libtool