use echo, not $echo in the Win32-specific code that sets up the Python

2008-08-28  Sven Neumann  <sven@gimp.org>

	* configure.in: use echo, not $echo in the Win32-specific code
	that sets up the Python build variables.


svn path=/trunk/; revision=26798
This commit is contained in:
Sven Neumann 2008-08-28 12:32:48 +00:00 committed by Sven Neumann
parent c9c3329441
commit a75532cb48
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2008-08-28 Sven Neumann <sven@gimp.org>
* configure.in: use echo, not $echo in the Win32-specific code
that sets up the Python build variables.
2008-08-28 Sven Neumann <sven@gimp.org>
* app/paint-funcs/scale-region.c (scale_determine_progress):

View File

@ -1650,7 +1650,7 @@ if test "x$enable_python" != xno; then
PYLINK_LIBS=
if test "x$platform_win32" = "xyes"; then
PYBIN_PATH="$py_exec_prefix\pythonw.exe"
PYTHON_INCLUDES=`$echo "$PYTHON_INCLUDES" | sed -e 's/\\\\/\\//g'`
PYTHON_INCLUDES=`echo "$PYTHON_INCLUDES" | sed -e 's/\\\\/\\//g'`
py_exec_prefix=`echo "$py_exec_prefix" | sed -e 's/\\\\/\\//g'`
pylibversion=`echo $PYTHON_VERSION | sed -e 's/\\.//'`
PYLINK_LIBS="-L${py_exec_prefix}/libs -lpython${pylibversion}"