From 35d491c331da5e4d17f7102bb085472d8fe87036 Mon Sep 17 00:00:00 2001 From: Dave Murphy Date: Wed, 22 Jun 2011 15:54:57 +0000 Subject: [PATCH] bump libogc version, don't strip .la files or embedspu script --- build-devkit.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-devkit.sh b/build-devkit.sh index 317c3c4..4633b79 100644 --- a/build-devkit.sh +++ b/build-devkit.sh @@ -20,7 +20,7 @@ fi #--------------------------------------------------------------------------------- # specify some urls to download the source packages from #--------------------------------------------------------------------------------- -LIBOGC_VER=1.8.6 +LIBOGC_VER=1.8.7 LIBGBA_VER=20090222 LIBNDS_VER=1.5.0 DEFAULT_ARM7_VER=0.5.19 @@ -577,8 +577,8 @@ for f in $INSTALLDIR/$package/bin/* \ $INSTALLDIR/$package/$target/bin/* \ $INSTALLDIR/$package/libexec/gcc/$target/$GCC_VER/* do - # exclude dll for windows, directories & the gccbug text file - if ! [[ "$f" == *.dll || -d $f || "$f" == *-gccbug ]] + # exclude dll for windows, so for linux/osx, directories .la files, embedspu script & the gccbug text file + if ! [[ "$f" == *.dll || "$f" == *.so || -d $f || "$f" == *.la || "$f" == *-embedspu || "$f" == *-gccbug ]] then strip $f fi