diff options
author | phk <phk@FreeBSD.org> | 2003-02-04 08:15:30 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2003-02-04 08:15:30 +0000 |
commit | 65dd91a290f2209b6b8514ec4adc44f8c51c5a3e (patch) | |
tree | 925ecfe04753de989418b55791a5d60d61812c10 /Makefile.inc1 | |
parent | 544f9b6e5fc8fe2d51df3bde1fe6f8c8ff27678e (diff) | |
download | FreeBSD-src-65dd91a290f2209b6b8514ec4adc44f8c51c5a3e.zip FreeBSD-src-65dd91a290f2209b6b8514ec4adc44f8c51c5a3e.tar.gz |
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>
Diffstat (limited to 'Makefile.inc1')
-rw-r--r-- | Makefile.inc1 | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Makefile.inc1 b/Makefile.inc1 index 7404433..c290a49 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" |