You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@subversion.apache.org by Matt Kraai <kr...@ftbfs.org> on 2002/11/19 01:33:06 UTC

[PATCH] fix issue #998

Howdy,

Issue #998 was caused by a missing "$".

Matt

* configure.in: Add missing "$" to MAKEINFO test.

Index: configure.in
===================================================================
--- configure.in	(revision 3826)
+++ configure.in	(working copy)
@@ -387,7 +387,7 @@
 
 dnl try to find the "makeinfo" program
 AC_PATH_PROG(MAKEINFO, makeinfo, [echo cannot run makeinfo])
-if test "MAKEINFO" = "echo cannot run makeinfo"; then
+if test "$MAKEINFO" = "echo cannot run makeinfo"; then
         dnl we won't install/make any info pages then
 	INSTALL_INFO=""
 else

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org

Re: [PATCH] fix issue #998

Posted by Blair Zajac <bl...@orcaware.com>.
Matt Kraai wrote:
> 
> Howdy,
> 
> Issue #998 was caused by a missing "$".
> 
> Matt

Thanks.  Fixed in rev 3827.

Best,
Blair

-- 
Blair Zajac <bl...@orcaware.com>
Web and OS performance plots - http://www.orcaware.com/orca/

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org