guile-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [patch] guile-readline/configure.in


From: Lars J. Aas
Subject: Re: [patch] guile-readline/configure.in
Date: Thu, 16 Nov 2000 14:14:39 +0100
User-agent: Mutt/1.2.5i

In Cygwin, noone can hear you scream...  No, with Cygwin you'll probably
have spaces in $PATH ("Program Files"), and amazingly the PATH-assignment
is split so the shell thinks Files[...] is the command.  Quoting fixes
this, but is the PATH prepending really necessary at all?

  Lars J

Index: libguile/Makefile.am
===================================================================
RCS file: /cvs/guile/guile-core/libguile/Makefile.am,v
retrieving revision 1.118
diff -u -r1.118 Makefile.am
--- libguile/Makefile.am        2000/10/25 14:49:00     1.118
+++ libguile/Makefile.am        2000/11/16 13:04:42
@@ -186,11 +186,11 @@
 
 SUFFIXES = .x .doc
 .c.x:
-       PATH=.:${PATH} ./guile-doc-snarf $< $(DEFS) $(INCLUDES) $(CPPFLAGS) 
$(CFLAGS) $< > $@ \
+       PATH=".:${PATH}" ./guile-doc-snarf $< $(DEFS) $(INCLUDES) $(CPPFLAGS) 
$(CFLAGS) $< > $@ \
        || { rm $@; false; }
 .x.doc:
-       PATH=.:${PATH} ./guile-doc-snarf $(srcdir)/$*.c $(DEFS) $(INCLUDES) 
$(CPPFLAGS) $(CFLAGS) $(srcdir)/$*.c > /dev/null \
+       PATH=".:${PATH}" ./guile-doc-snarf $(srcdir)/$*.c $(DEFS) $(INCLUDES) 
$(CPPFLAGS) $(CFLAGS) $(srcdir)/$*.c > /dev/null \
        || { rm $@; false; }
 
 error.x: cpp_err_symbols.c
 posix.x: cpp_sig_symbols.c



reply via email to

[Prev in Thread] Current Thread [Next in Thread]