mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=9564
This commit is contained in:
parent
e1b3be0021
commit
944d79fb44
|
@ -2387,7 +2387,9 @@ Charlie 25 Feb 2006
|
||||||
release_GridRepublic.sh
|
release_GridRepublic.sh
|
||||||
|
|
||||||
Charlie 27 Feb 2006
|
Charlie 27 Feb 2006
|
||||||
- Mac: Fix tilde expansion bug in build script.
|
- Mac: Fix tilde expansion bug in setupForBOINC build script.
|
||||||
|
- Fix bug in buildWxMac build script.
|
||||||
|
|
||||||
mac_build/
|
mac_build/
|
||||||
setupForBOINC.sh
|
setupForBOINC.sh
|
||||||
|
buildWxMac.sh
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
#
|
#
|
||||||
# Script to build the wxMac-2.6.2 library for BOINC as a Universal Binary
|
# Script to build the wxMac-2.6.2 library for BOINC as a Universal Binary
|
||||||
#
|
#
|
||||||
# by Charlie Fenton 2/17/06
|
# by Charlie Fenton 2/27/06
|
||||||
#
|
#
|
||||||
## Before running this script, you must first copy the special XCode
|
## Before running this script, you must first copy the special XCode
|
||||||
## project
|
## project
|
||||||
|
@ -112,8 +112,8 @@ xcodebuild -project src/wxMac-BOINC.xcodeproj -target wxStaticDebug -configurat
|
||||||
if [ $? -ne 0 ]; then exit 1; fi
|
if [ $? -ne 0 ]; then exit 1; fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "$1" != "-clean" ] && [ -f src/build/Deployment/libwx_macd_ppc.a ]; then
|
if [ "$1" != "-clean" ] && [ -f src/build/Deployment/libwx_macd.a ]; then
|
||||||
echo "libwx_macd_ppc.a already built"
|
echo "libwx_macd.a already built"
|
||||||
else
|
else
|
||||||
|
|
||||||
lipo -create src/build/Deployment/libwx_macd_ppc.a src/build/Deployment/libwx_macd_i386.a -output src/build/Deployment/libwx_macd.a
|
lipo -create src/build/Deployment/libwx_macd_ppc.a src/build/Deployment/libwx_macd_i386.a -output src/build/Deployment/libwx_macd.a
|
||||||
|
|
Loading…
Reference in New Issue