Index: /issm/trunk-jpl/externalpackages/scipy/README
===================================================================
--- /issm/trunk-jpl/externalpackages/scipy/README	(revision 12244)
+++ /issm/trunk-jpl/externalpackages/scipy/README	(revision 12245)
@@ -1,2 +1,2 @@
 You will find instructions on scipy at: 
-http://www.scipy.org/Installing_SciPy/Mac_OS_X#head-ba1926aec910a9a1deaf9eff99e38ee23103a3b3
+http://www.scipy.org/Installing_SciPy/Mac_OS_X
Index: /issm/trunk-jpl/externalpackages/scipy/install-macosx-lion.sh
===================================================================
--- /issm/trunk-jpl/externalpackages/scipy/install-macosx-lion.sh	(revision 12245)
+++ /issm/trunk-jpl/externalpackages/scipy/install-macosx-lion.sh	(revision 12245)
@@ -0,0 +1,39 @@
+#!/bin/bash
+
+#1: install numpy
+#2 install scipy
+#3 erase
+install=2
+
+
+export CC=gcc
+export CXX=g++
+export FFLAGS=-ff2c
+
+
+if [[ $install == "1" ]];then 
+
+	#download numpy first
+	git clone https://github.com/numpy/numpy.git
+
+	#install numpy
+	cd numpy
+	python setup.py build
+	python setup.py install
+
+	
+elif [[ $install == "2" ]];then 
+	
+	#download scipy
+	git clone https://github.com/scipy/scipy.git
+
+	#install scipy
+	cd scipy
+	python setup.py build
+	python setup.py install
+
+elif [[ $install == "3" ]];then 
+	rm -rf numpy scipy
+else 
+	echo "Choice not covered"
+fi
Index: /issm/trunk-jpl/externalpackages/scipy/install-macosx-snowleopard.sh
===================================================================
--- /issm/trunk-jpl/externalpackages/scipy/install-macosx-snowleopard.sh	(revision 12245)
+++ /issm/trunk-jpl/externalpackages/scipy/install-macosx-snowleopard.sh	(revision 12245)
@@ -0,0 +1,41 @@
+#!/bin/bash
+PYVERSION=2.7
+PYTHON=python${PYVERSION}
+
+#1: install numpy
+#2 install scipy
+#3 erase
+install=2
+
+export CC=/usr/bin/gcc-4.0
+export CXX=/usr/bin/g++-4.0
+
+if [[ $install == "1" ]];then 
+
+	#download numpy first
+	git clone https://github.com/numpy/numpy.git
+
+	#install numpy
+	cd numpy
+	python setup.py build
+	python setup.py install
+	cd ..
+	${PYTHON} -c "import numpy; print 'Installed NumPy', numpy.__version__"
+	
+elif [[ $install == "2" ]];then 
+	
+	#download scipy
+	git clone https://github.com/scipy/scipy.git
+
+	#install scipy
+	cd scipy
+	python setup.py build
+	python setup.py install
+	cd ..
+	${PYTHON} -c "import scipy; print 'Installed SciPy', scipy.__version__"
+
+elif [[ $install == "3" ]];then 
+	rm -rf numpy scipy
+else 
+	echo "Choice not covered"
+fi
Index: sm/trunk-jpl/externalpackages/scipy/install-macosx64.sh
===================================================================
--- /issm/trunk-jpl/externalpackages/scipy/install-macosx64.sh	(revision 12244)
+++ 	(revision )
@@ -1,39 +1,0 @@
-#!/bin/bash
-
-#1: install numpy
-#2 install scipy
-#3 erase
-install=2
-
-
-export CC=gcc
-export CXX=g++
-export FFLAGS=-ff2c
-
-
-if [[ $install == "1" ]];then 
-
-	#download numpy first
-	git clone https://github.com/numpy/numpy.git
-
-	#install numpy
-	cd numpy
-	python setup.py build
-	python setup.py install
-
-	
-elif [[ $install == "2" ]];then 
-	
-	#download scipy
-	git clone https://github.com/scipy/scipy.git
-
-	#install scipy
-	cd scipy
-	python setup.py build
-	python setup.py install
-
-elif [[ $install == "3" ]];then 
-	rm -rf numpy scipy
-else 
-	echo "Choice not covered"
-fi
