Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 16 May 2013 22:35:34 +0000 (UTC)
From:      Xin LI <delphij@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r250722 - head/usr.bin/bmake
Message-ID:  <201305162235.r4GMZYaO045283@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: delphij
Date: Thu May 16 22:35:33 2013
New Revision: 250722
URL: http://svnweb.freebsd.org/changeset/base/250722

Log:
  guard against MK_SHARED_TOOLCHAIN not being defined.

Modified:
  head/usr.bin/bmake/Makefile.inc

Modified: head/usr.bin/bmake/Makefile.inc
==============================================================================
--- head/usr.bin/bmake/Makefile.inc	Thu May 16 22:25:17 2013	(r250721)
+++ head/usr.bin/bmake/Makefile.inc	Thu May 16 22:35:33 2013	(r250722)
@@ -11,7 +11,7 @@
 PROG= make
 .endif
 
-.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?201305162235.r4GMZYaO045283>