Changeset 12536
- Timestamp:
- 06/25/12 14:59:30 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/externalpackages/python/install-macosx-snowleopard.sh
r12469 r12536 24 24 #Configure doxygen 25 25 cd src 26 ./configure --prefix="$ISSM_DIR/externalpackages/python/install" --enable-framework="$ISSM_DIR/externalpackages/python/install" --enable-universalsdk --with-universal-archs="32-bit" 26 # --enable-framework needs to have the form "$SOME_PATH/Library/Frameworks" to avoid installing components in /Applications directory 27 # --prefix is recognized as $SOME_PATH as long as this form is taken, so it's not necessary to include 28 ./configure --enable-framework="$ISSM_DIR/externalpackages/python/install/Library/Frameworks" 27 29 if [ -z $1 ]; then 28 30 make … … 43 45 #Some modifications to be done in case version is 2.7 44 46 if [[ $version == "2.7.2" ]]; then 45 cd install/46 ln -s Python.framework/Headers include47 ln -s Python.framework/Versions/2.7/lib lib47 cd ../install 48 ln -s Library/Frameworks/Python.framework/Headers include 49 ln -s Library/Frameworks/Python.framework/Versions/2.7/lib lib 48 50 fi
Note:
See TracChangeset
for help on using the changeset viewer.