[cig-commits] r13813 - cs/cigma/trunk/config

luis at geodynamics.org luis at geodynamics.org
Mon Jan 12 14:09:29 PST 2009


Author: luis
Date: 2009-01-12 14:09:28 -0800 (Mon, 12 Jan 2009)
New Revision: 13813

Modified:
   cs/cigma/trunk/config/cigma_python.m4
Log:
Fixed bug that was creating cigma-1.1.1.tar.gz instead of 1.0.0

Overwriting the VERSION variable will confuse 'make dist', so
use a differently named variable to hold the version of numpy.

Modified: cs/cigma/trunk/config/cigma_python.m4
===================================================================
--- cs/cigma/trunk/config/cigma_python.m4	2009-01-12 15:03:54 UTC (rev 13812)
+++ cs/cigma/trunk/config/cigma_python.m4	2009-01-12 22:09:28 UTC (rev 13813)
@@ -162,10 +162,9 @@
 
     AC_MSG_CHECKING(for python module numpy)
 
-    VERSION=`$PYTHON -c "import numpy; print numpy.__version__" 2>/dev/null`
+    PYTHON_NUMPY_VERSION=`$PYTHON -c "import numpy; print numpy.__version__" 2>/dev/null`
     if test $? -eq 0; then
         PYTHON_NUMPY=1
-        PYTHON_NUMPY_VERSION=$VERSION
         AC_MSG_RESULT([found ($VERSION)])
     else
         PYTHON_NUMPY=0



More information about the CIG-COMMITS mailing list