[93417] trunk/dports/lang/apple-gcc42/files/build_gcc

jeremyhu at macports.org jeremyhu at macports.org
Mon May 21 22:44:19 PDT 2012


Revision: 93417
          https://trac.macports.org/changeset/93417
Author:   jeremyhu at macports.org
Date:     2012-05-21 22:44:19 -0700 (Mon, 21 May 2012)
Log Message:
-----------
apple-gcc42: Ignore an error that can occur when using XCode 2.5's version of strip

Modified Paths:
--------------
    trunk/dports/lang/apple-gcc42/files/build_gcc

Modified: trunk/dports/lang/apple-gcc42/files/build_gcc
===================================================================
--- trunk/dports/lang/apple-gcc42/files/build_gcc	2012-05-22 03:00:08 UTC (rev 93416)
+++ trunk/dports/lang/apple-gcc42/files/build_gcc	2012-05-22 05:44:19 UTC (rev 93417)
@@ -696,7 +696,10 @@
 find $DEST_DIR -perm -0111 \! -name fixinc.sh \
     \! -name mkheaders \! -name libstdc++.dylib -type f -print \
   | xargs strip || exit 1
-find $DEST_DIR -name \*.a -print | xargs strip -SX || exit 1
+
+# Ignore errors from this next one due to possible issues on Tiger
+find $DEST_DIR -name \*.a -print | xargs strip -SX
+
 find $DEST_DIR -name \*.a -print | xargs ranlib || exit 1
 find $DEST_DIR -name \*.dSYM -print | xargs rm -r || exit 1
 chgrp -h -R wheel $DEST_DIR
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/macports-changes/attachments/20120521/7737aef9/attachment-0001.html>


More information about the macports-changes mailing list