Index: /issm/trunk-jpl/externalpackages/python/install-macosx-snowleopard.sh
===================================================================
--- /issm/trunk-jpl/externalpackages/python/install-macosx-snowleopard.sh	(revision 12535)
+++ /issm/trunk-jpl/externalpackages/python/install-macosx-snowleopard.sh	(revision 12536)
@@ -24,5 +24,7 @@
 #Configure doxygen
 cd src 
-./configure --prefix="$ISSM_DIR/externalpackages/python/install" --enable-framework="$ISSM_DIR/externalpackages/python/install" --enable-universalsdk --with-universal-archs="32-bit"
+# --enable-framework needs to have the form "$SOME_PATH/Library/Frameworks" to avoid installing components in /Applications directory
+# --prefix is recognized as $SOME_PATH as long as this form is taken, so it's not necessary to include
+./configure --enable-framework="$ISSM_DIR/externalpackages/python/install/Library/Frameworks" 
 if [ -z $1 ]; then
 	make
@@ -43,6 +45,6 @@
 #Some modifications to be done in case version is 2.7
 if [[ $version == "2.7.2" ]]; then 
-	cd install/
-	ln -s Python.framework/Headers include
-	ln -s Python.framework/Versions/2.7/lib lib
+	cd ../install
+	ln -s Library/Frameworks/Python.framework/Headers include
+	ln -s Library/Frameworks/Python.framework/Versions/2.7/lib lib
 fi
