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 <fj@batmule.dk>
This commit is contained in:
Poul-Henning Kamp 2003-02-04 08:15:30 +00:00
parent 93d6c559eb
commit d0cfa43f14
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=110312

View File

@ -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"