svn commit: r340652 - head/rescue/rescue

Ed Maste emaste at FreeBSD.org
Mon Nov 19 22:18:19 UTC 2018


Author: emaste
Date: Mon Nov 19 22:18:18 2018
New Revision: 340652
URL: https://svnweb.freebsd.org/changeset/base/340652

Log:
  rescue: set NO_SHARED in Makefile
  
  The rescue binary is built statically via the Makefile generated by
  crunchgen, but that does not trigger other shared/static logic in
  bsd.prog.mk - in particular disabling retpolineplt with static linking.
  
  PR:		233336
  Reported by:	Charlie Li
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/rescue/rescue/Makefile

Modified: head/rescue/rescue/Makefile
==============================================================================
--- head/rescue/rescue/Makefile	Mon Nov 19 21:59:07 2018	(r340651)
+++ head/rescue/rescue/Makefile	Mon Nov 19 22:18:18 2018	(r340652)
@@ -6,6 +6,7 @@
 PACKAGE=rescue
 MAN=
 MK_SSP=	no
+NO_SHARED=	yes
 
 PROG=	rescue
 BINDIR?=/rescue


More information about the svn-src-head mailing list