|
From: Keith M. <kei...@us...> - 2008-02-23 22:06:44
|
Update of /cvsroot/mingw/man In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv31764 Modified Files: ChangeLog aclocal.m4 configure Log Message: * aclocal.m4 (MSYS_AC_PREFIX_CANONICALISE): Add missing quote. Index: aclocal.m4 =================================================================== RCS file: /cvsroot/mingw/man/aclocal.m4,v retrieving revision 1.27 retrieving revision 1.28 diff -C2 -d -r1.27 -r1.28 *** aclocal.m4 23 Feb 2008 13:28:59 -0000 1.27 --- aclocal.m4 23 Feb 2008 22:06:37 -0000 1.28 *************** *** 238,242 **** # AC_DEFUN([MSYS_AC_PREFIX_CANONICALISE], ! [if test "x${$1} != "xNONE" then MSYS_AC_CANONICAL_PATH([$1], [${$1}]) --- 238,242 ---- # AC_DEFUN([MSYS_AC_PREFIX_CANONICALISE], ! [if test "x${$1}" != "xNONE" then MSYS_AC_CANONICAL_PATH([$1], [${$1}]) Index: configure =================================================================== RCS file: /cvsroot/mingw/man/configure,v retrieving revision 1.35 retrieving revision 1.36 diff -C2 -d -r1.35 -r1.36 *** configure 23 Feb 2008 13:28:59 -0000 1.35 --- configure 23 Feb 2008 22:06:37 -0000 1.36 *************** *** 1426,1430 **** s?/*$??'` ! if test "x${exec_prefix} != "xNONE" then ac_dir="${exec_prefix}" --- 1426,1430 ---- s?/*$??'` ! if test "x${exec_prefix}" != "xNONE" then ac_dir="${exec_prefix}" *************** *** 1451,1455 **** fi ! if test "x${prefix} != "xNONE" then ac_dir="${prefix}" --- 1451,1455 ---- fi ! if test "x${prefix}" != "xNONE" then ac_dir="${prefix}" Index: ChangeLog =================================================================== RCS file: /cvsroot/mingw/man/ChangeLog,v retrieving revision 1.62 retrieving revision 1.63 diff -C2 -d -r1.62 -r1.63 *** ChangeLog 23 Feb 2008 13:28:59 -0000 1.62 --- ChangeLog 23 Feb 2008 22:06:37 -0000 1.63 *************** *** 1,4 **** --- 1,11 ---- 2008-02-23 Keith Marshall <kei...@us...> + Bug fix for missing quote in `test', arising from previous commit. + + * aclocal.m4 (MSYS_AC_PREFIX_CANONICALISE): Add missing quote. + * configure: Regenerated. + + 2008-02-23 Keith Marshall <kei...@us...> + Canonicalise `prefix' and `exec_prefix' specifications for building on Win32, using MSYS. |