Changeset 12720
- Timestamp:
- 07/24/12 15:43:09 (13 years ago)
- Location:
- issm/trunk-jpl/externalpackages/python
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/externalpackages/python
- Property svn:ignore
-
old new 1 1 install 2 install-python* 2 3 src 3 4 *.tgz
-
- Property svn:ignore
-
issm/trunk-jpl/externalpackages/python/install-macosx-lion.sh
r12244 r12720 23 23 #Configure doxygen 24 24 cd src 25 ./configure --prefix="$ISSM_DIR/externalpackages/python/install" --enable-framework="$ISSM_DIR/externalpackages/python/install" 25 ./configure --enable-framework="$ISSM_DIR/externalpackages/python/install/Library/Frameworks" 26 #obsolete? 27 #./configure --prefix="$ISSM_DIR/externalpackages/python/install" --enable-framework="$ISSM_DIR/externalpackages/python/install" 28 29 #make 26 30 if [ -z $1 ]; then 27 31 make … … 38 42 ln -s Python.framework/Versions/3.2/include/python3.2m include 39 43 ln -s Python.framework/Versions/3.2/lib/ lib 44 fi 40 45 46 #Some modifications to be done in case version is 2.7 47 if [[ $version == "2.7.2" ]]; then 48 cd ../install 49 ln -s Library/Frameworks/Python.framework/Headers include 50 ln -s Library/Frameworks/Python.framework/Versions/2.7/lib lib 41 51 52 #Patch pyport.h: 53 cd include 54 patch pyport.h ../patch/pyport.h.patch 42 55 fi -
issm/trunk-jpl/externalpackages/python/install-macosx-snowleopard.sh
r12536 r12720 27 27 # --prefix is recognized as $SOME_PATH as long as this form is taken, so it's not necessary to include 28 28 ./configure --enable-framework="$ISSM_DIR/externalpackages/python/install/Library/Frameworks" 29 30 #make 29 31 if [ -z $1 ]; then 30 32 make … … 48 50 ln -s Library/Frameworks/Python.framework/Headers include 49 51 ln -s Library/Frameworks/Python.framework/Versions/2.7/lib lib 52 53 #Patch pyport.h: 54 cd include 55 patch pyport.h ../patch/pyport.h.patch 50 56 fi
Note:
See TracChangeset
for help on using the changeset viewer.