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
 
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to