From d0cfa43f14217d7be3dd5915a29a323e02c3d47b Mon Sep 17 00:00:00 2001 From: Poul-Henning Kamp Date: Tue, 4 Feb 2003 08:15:30 +0000 Subject: [PATCH] Don't attempt buildworld if the path to the source-tree contains a comma. Can be removed if the underlying issue is fixed. Submitted by: Flemming Jacobsen --- Makefile.inc1 | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Makefile.inc1 b/Makefile.inc1 index 7404433b7f2a..c290a493e49a 100644 --- a/Makefile.inc1 +++ b/Makefile.inc1 @@ -253,6 +253,14 @@ INCDIRS= arpa dev fs g++/backward g++/bits g++/ext isc isofs libmilter \ # success, regardless of how old your existing system is. # _worldtmp: +.if ${.CURDIR:C/[^,]//g} != "" +# The m4 build of sendmail files doesn't like it if ',' is used +# anywhere in the path of it's files. + @echo + @echo "*** Error: path to source tree contains a comma ','" + @echo + @false +.endif @echo @echo "--------------------------------------------------------------" @echo ">>> Rebuilding the temporary build tree"