[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH CVS] OS/2 tests
From: |
Richard Dawe |
Subject: |
Re: [PATCH CVS] OS/2 tests |
Date: |
Sat, 01 Mar 2003 09:31:23 +0000 |
Hello.
Ilya Zakharevich wrote:
[snip]
> b) autoconf/status.m4:
>
> `echo $srcdir/$f' was performed under influence of IFS=:. If $srcdir
> had ":" in it (as in a full path of DOSISH systems), it would be
> replaced by " ".
This has recently been fixed in CVS, to cope with DJGPP. The fix was just like
the one you posted below:
[snip]
> diff -pru autoconf/lib/autoconf/status.m4 autoconf.my/lib/autoconf/status.m4
> --- autoconf/lib/autoconf/status.m4 Tue Nov 12 02:54:46 2002
> +++ autoconf.my/lib/autoconf/status.m4 Thu Feb 27 22:51:46 2003
> @@ -530,7 +530,7 @@ for ac_file in : $CONFIG_HEADERS; do tes
> echo $f
> elif test -f "$srcdir/$f"; then
> # Source tree
> - echo $srcdir/$f
> + echo "$srcdir/$f"
> else
> # /dev/null tree
> AC_MSG_ERROR([cannot find input file: $f])
> @@ -986,7 +986,7 @@ AC_PROVIDE_IFELSE([AC_PROG_INSTALL],
> echo $f
> elif test -f "$srcdir/$f"; then
> # Source tree
> - echo $srcdir/$f
> + echo "$srcdir/$f"
> else
> # /dev/null tree
> AC_MSG_ERROR([cannot find input file: $f])
[snip]
Bye, Rich =]
--
Richard Dawe [ http://www.phekda.freeserve.co.uk/richdawe/ ]