Date: Wed, 9 May 2012 04:54:51 +0000 (UTC) From: Warner Losh <imp@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r235152 - head/usr.bin/make Message-ID: <201205090454.q494spm1066555@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: imp Date: Wed May 9 04:54:50 2012 New Revision: 235152 URL: http://svn.freebsd.org/changeset/base/235152 Log: Make is part of the bootstrap path, so we need to guard against this not being defined. Otherwise we don't make a new make when the old make is incompatible. Modified: head/usr.bin/make/Makefile Modified: head/usr.bin/make/Makefile ============================================================================== --- head/usr.bin/make/Makefile Wed May 9 01:55:23 2012 (r235151) +++ head/usr.bin/make/Makefile Wed May 9 04:54:50 2012 (r235152) @@ -10,7 +10,7 @@ SRCS= arch.c buf.c cond.c dir.c for.c ha lst.c main.c make.c parse.c proc.c shell.c str.c suff.c targ.c \ util.c var.c -.if ${MK_SHARED_TOOLCHAIN} == "no" +.if !defined(MK_SHARED_TOOLCHAIN) || ${MK_SHARED_TOOLCHAIN} == "no" NO_SHARED?= YES .endif
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201205090454.q494spm1066555>