This is the mail archive of the libstdc++@gcc.gnu.org mailing list for the libstdc++ 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, libstdc++-v3]


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.am: Use space as separator for VPATH
   instead of ':'.


Index: gcc/libstdc++-v3/src/Makefile.am
===================================================================
--- gcc/libstdc++-v3/src/Makefile.am	(revision 130394)
+++ gcc/libstdc++-v3/src/Makefile.am	(working copy)
@@ -182,7 +182,7 @@
 	${host_sources} \
 	${host_sources_extra} 
 
-VPATH = $(top_srcdir)/src:$(top_srcdir)
+VPATH = $(top_srcdir)/src $(top_srcdir)
 
 libstdc___la_SOURCES = $(sources)
 

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