svn commit: smb-build r19 - in trunk/build/m4: .

tpot at samba.org tpot at samba.org
Mon Aug 1 03:10:56 GMT 2005


Author: tpot
Date: 2005-08-01 03:10:56 +0000 (Mon, 01 Aug 2005)
New Revision: 19

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=smb-build&rev=19

Log:
Tee-hee.  Python portability fix.

Modified:
   trunk/build/m4/check_python.m4


Changeset:
Modified: trunk/build/m4/check_python.m4
===================================================================
--- trunk/build/m4/check_python.m4	2005-08-01 02:59:04 UTC (rev 18)
+++ trunk/build/m4/check_python.m4	2005-08-01 03:10:56 UTC (rev 19)
@@ -8,5 +8,5 @@
 AC_PATH_PROG(PYTHON, python)
 if test x"$PYTHON" != x""; then
 	AC_MSG_CHECKING([python version])
-	$PYTHON -c "import sys, string; print sys.version.replace('\\n', ' ')"
+	$PYTHON -c "import sys, string; print string.replace(sys.version, '\\n', ' ')"
 fi



More information about the samba-cvs mailing list