libtool-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[SCM] GNU Libtool branch, master, updated. v2.2.4-15-gbe6f90a


From: Peter O'Gorman
Subject: [SCM] GNU Libtool branch, master, updated. v2.2.4-15-gbe6f90a
Date: Sat, 31 May 2008 17:18:59 +0000

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  be6f90aa33bfaa28dcaba8cc269ef504a51f6f9a (commit)
      from  49db3a0a4cf26382d01c209ad4004e7eb2dd1be0 (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 be6f90aa33bfaa28dcaba8cc269ef504a51f6f9a
Author: Peter O'Gorman <address@hidden>
Date:   Sat May 31 12:12:31 2008 -0500

    Skip darwin test if fat link fails.
    
    * tests/darwin.at: Skip if we can not link a fat program.
    Reported by Daniel Macks <address@hidden>

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog       |    6 ++++++
 tests/darwin.at |   12 ++++++++----
 2 files changed, 14 insertions(+), 4 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 178d505..90c8ebd 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2008-05-31  Peter O'Gorman  <address@hidden>
+
+       Skip darwin test if fat link fails.
+       * tests/darwin.at: Skip if we can not link a fat program.
+       Reported by Daniel Macks <address@hidden>
+
 2008-05-26  Ralf Wildenhues  <address@hidden>
 
        libtoolize should not remove config.guess, config.sub.
diff --git a/tests/darwin.at b/tests/darwin.at
index 7e6d07e..2ca5649 100644
--- a/tests/darwin.at
+++ b/tests/darwin.at
@@ -30,17 +30,21 @@ darwin*) ;;
 *) noskip=false ;;
 esac
 
-AT_DATA([foo.c],[[
-int x=0;
+AT_DATA([simple.c] ,[[
+int main() { return 0;}
 ]])
 
 $noskip && {
-$CC $CPPFLAGS $CFLAGS -arch ppc -arch i386 -c -o foo.o foo.c 2>&1 > /dev/null 
|| noskip=false
-rm -f foo.o
+$CC $CPPFLAGS $CFLAGS -arch ppc -arch i386 -o simple simple.c 2>&1 > /dev/null 
|| noskip=false
+rm -f simple 
 }
 
 AT_CHECK([$noskip || (exit 77)])
 
+AT_DATA([foo.c],[[
+int x=0;
+]])
+
 AT_DATA([baz.c],[[
 int y=0;
 ]])


hooks/post-receive
--
GNU Libtool




reply via email to

[Prev in Thread] Current Thread [Next in Thread]