This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[patch, gcc] Use space as separator for vpath


GNU Make documentation specifies that either space or ':' should be used as path separator for vpath. The latest changes however to ';' for DJGPP (i?86-pc-msdosdjgpp). As result use of ':' as vpath separator in Makefile.in is incompatible with DJGPP.

2007-11-24 Andris Pavenis <andris.pavenis@iki.fi>

   * Makefile.in: Use space as separator for vpath
   instead of ':'.


Index: gcc/gcc/Makefile.in
===================================================================
--- gcc/gcc/Makefile.in	(revision 130394)
+++ gcc/gcc/Makefile.in	(working copy)
@@ -111,7 +111,7 @@
 # pattern rule for everything.
 # This vpath could be extended within the Make-lang fragments.
 
-vpath %.texi $(gcc_docdir):$(gcc_docdir)/include
+vpath %.texi $(gcc_docdir) $(gcc_docdir)/include
 
 # ----
 # Default values for variables overridden in Makefile fragments.

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]