r22953 - gnucash/trunk - Quote the python path in case it has blanks in it.

Mike Alexander mta at code.gnucash.org
Sun May 5 17:57:36 EDT 2013


Author: mta
Date: 2013-05-05 17:57:35 -0400 (Sun, 05 May 2013)
New Revision: 22953
Trac: http://svn.gnucash.org/trac/changeset/22953

Modified:
   gnucash/trunk/configure.ac
Log:
Quote the python path in case it has blanks in it.

Modified: gnucash/trunk/configure.ac
===================================================================
--- gnucash/trunk/configure.ac	2013-05-05 20:33:30 UTC (rev 22952)
+++ gnucash/trunk/configure.ac	2013-05-05 21:57:35 UTC (rev 22953)
@@ -1065,7 +1065,7 @@
 	   AC_MSG_ERROR([Could not find python >= 2.4. If you use --enable-python, you MUST have python installed!])
     ])
   AC_PYTHON_DEVEL(>= '2.4')
-  if test x${PYTHON} = "x"
+  if test "x${PYTHON}" = "x"
   then
 	   AC_MSG_ERROR([Could not find Python development files. Make sure that the correct python-devel package is installed.])
   fi



More information about the gnucash-changes mailing list