From owner-svn-src-all@FreeBSD.ORG Sun Sep 29 20:20:19 2013 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id E3726F7A; Sun, 29 Sep 2013 20:20:18 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C2BAD2751; Sun, 29 Sep 2013 20:20:18 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r8TKKIdE027939; Sun, 29 Sep 2013 20:20:18 GMT (envelope-from bdrewery@svn.freebsd.org) Received: (from bdrewery@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r8TKKHjG027932; Sun, 29 Sep 2013 20:20:17 GMT (envelope-from bdrewery@svn.freebsd.org) Message-Id: <201309292020.r8TKKHjG027932@svn.freebsd.org> From: Bryan Drewery Date: Sun, 29 Sep 2013 20:20:17 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r255944 - in head/sys/boot: i386/efi powerpc/boot1.chrp userboot/libstand userboot/test userboot/userboot X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Sep 2013 20:20:19 -0000 Author: bdrewery (ports committer) Date: Sun Sep 29 20:20:17 2013 New Revision: 255944 URL: http://svnweb.freebsd.org/changeset/base/255944 Log: Use MK_SSP=no after including bsd.own.mk to disable SSP instead of user-knob WITH[OUT]_SSP to avoid hitting an error if user has WITH_SSP in their make.conf. Ports now use this knob. make[7]: "/usr/src/share/mk/bsd.own.mk" line 466: WITH_SSP and WITHOUT_SSP can't both be set. This is similar to previous cleanup done in r188895 Approved by: bapt Reviewed by: jlh (earlier version) Approved by: re (marius) MFC after: 1 week Modified: head/sys/boot/i386/efi/Makefile head/sys/boot/powerpc/boot1.chrp/Makefile head/sys/boot/userboot/libstand/Makefile head/sys/boot/userboot/test/Makefile head/sys/boot/userboot/userboot/Makefile Modified: head/sys/boot/i386/efi/Makefile ============================================================================== --- head/sys/boot/i386/efi/Makefile Sun Sep 29 20:10:22 2013 (r255943) +++ head/sys/boot/i386/efi/Makefile Sun Sep 29 20:20:17 2013 (r255944) @@ -1,10 +1,10 @@ # $FreeBSD$ NO_MAN= -WITHOUT_SSP= BUILDING_EFI= .include +MK_SSP= no PROG= loader.sym INTERNALPROG= Modified: head/sys/boot/powerpc/boot1.chrp/Makefile ============================================================================== --- head/sys/boot/powerpc/boot1.chrp/Makefile Sun Sep 29 20:10:22 2013 (r255943) +++ head/sys/boot/powerpc/boot1.chrp/Makefile Sun Sep 29 20:20:17 2013 (r255944) @@ -1,6 +1,6 @@ # $FreeBSD$ -WITHOUT_SSP= +SSP_CFLAGS= PROG= boot1.elf NEWVERSWHAT= "Open Firmware boot block" ${MACHINE_ARCH} Modified: head/sys/boot/userboot/libstand/Makefile ============================================================================== --- head/sys/boot/userboot/libstand/Makefile Sun Sep 29 20:10:22 2013 (r255943) +++ head/sys/boot/userboot/libstand/Makefile Sun Sep 29 20:20:17 2013 (r255944) @@ -6,10 +6,10 @@ # quite large. # -WITHOUT_SSP= NO_MAN= .include +MK_SSP= no S= ${.CURDIR}/../../../../lib/libstand Modified: head/sys/boot/userboot/test/Makefile ============================================================================== --- head/sys/boot/userboot/test/Makefile Sun Sep 29 20:10:22 2013 (r255943) +++ head/sys/boot/userboot/test/Makefile Sun Sep 29 20:20:17 2013 (r255944) @@ -2,9 +2,9 @@ NO_MAN= -WITHOUT_SSP= .include +MK_SSP= no PROG= test INTERNALPROG= Modified: head/sys/boot/userboot/userboot/Makefile ============================================================================== --- head/sys/boot/userboot/userboot/Makefile Sun Sep 29 20:10:22 2013 (r255943) +++ head/sys/boot/userboot/userboot/Makefile Sun Sep 29 20:20:17 2013 (r255944) @@ -1,9 +1,9 @@ # $FreeBSD$ NO_MAN= -WITHOUT_SSP= .include +MK_SSP= no SHLIB_NAME= userboot.so NO_CTF= yes