[MOAB-dev] r3038 - MOAB/trunk/tools/iMesh/python

kraftche at mcs.anl.gov kraftche at mcs.anl.gov
Tue Jul 21 14:41:43 CDT 2009


Author: kraftche
Date: 2009-07-21 14:41:43 -0500 (Tue, 21 Jul 2009)
New Revision: 3038

Modified:
   MOAB/trunk/tools/iMesh/python/Makefile.am
Log:
don't hard-code python interpreter

Modified: MOAB/trunk/tools/iMesh/python/Makefile.am
===================================================================
--- MOAB/trunk/tools/iMesh/python/Makefile.am	2009-07-21 19:34:22 UTC (rev 3037)
+++ MOAB/trunk/tools/iMesh/python/Makefile.am	2009-07-21 19:41:43 UTC (rev 3038)
@@ -11,14 +11,14 @@
                 --install-scripts="$(bindir)"
 
 all:
-	python setup.py build_ext $(BUILD_EXT_FLAGS)
-	python setup.py build
+	$(PYTHON) setup.py build_ext $(BUILD_EXT_FLAGS)
+	$(PYTHON) setup.py build
 
 install:
-	python setup.py install $(INSTALL_FLAGS)
+	$(PYTHON) setup.py install $(INSTALL_FLAGS)
 
 clean:
-	python setup.py clean --all
+	$(PYTHON) setup.py clean --all
 
 EXTRA_DIST = doc perf pkg test tools \
              common.h \



More information about the moab-dev mailing list