From owner-svn-src-head@FreeBSD.ORG Tue Jun 16 20:58:35 2015 Return-Path: Delivered-To: svn-src-head@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 71DA7CE0; Tue, 16 Jun 2015 20:58:35 +0000 (UTC) (envelope-from imp@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)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 45BF7793; Tue, 16 Jun 2015 20:58:35 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t5GKwZnl095312; Tue, 16 Jun 2015 20:58:35 GMT (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t5GKwYTD095308; Tue, 16 Jun 2015 20:58:34 GMT (envelope-from imp@FreeBSD.org) Message-Id: <201506162058.t5GKwYTD095308@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: imp set sender to imp@FreeBSD.org using -f From: Warner Losh Date: Tue, 16 Jun 2015 20:58:34 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r284464 - in head: . share/mk usr.bin usr.bin/make X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Jun 2015 20:58:35 -0000 Author: imp Date: Tue Jun 16 20:58:33 2015 New Revision: 284464 URL: https://svnweb.freebsd.org/changeset/base/284464 Log: Remove old fmake. It wasn't built by default for some time. Users that really need it can find it in the devel/fmake port or pkg install fmake. Note: This commit is orthogonal to the question 'can we fmake buildworld'. Differential Revision: https://reviews.freebsd.org/D2840 Deleted: head/usr.bin/make/ Modified: head/UPDATING head/share/mk/src.opts.mk head/usr.bin/Makefile Modified: head/UPDATING ============================================================================== --- head/UPDATING Tue Jun 16 20:34:39 2015 (r284463) +++ head/UPDATING Tue Jun 16 20:58:33 2015 (r284464) @@ -31,6 +31,10 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 11 disable the most expensive debugging functionality run "ln -s 'abort:false,junk:false' /etc/malloc.conf".) +20150616: + FreeBSD's old make (fmake) has been removed from the system. It is + available as the devel/fmake port or via pkg install fmake. + 20150615: The fix for the issue described in the 20150614 sendmail entry below has been been committed in revision 284436. The work Modified: head/share/mk/src.opts.mk ============================================================================== --- head/share/mk/src.opts.mk Tue Jun 16 20:34:39 2015 (r284463) +++ head/share/mk/src.opts.mk Tue Jun 16 20:58:33 2015 (r284464) @@ -179,7 +179,6 @@ __DEFAULT_NO_OPTIONS = \ BSD_GREP \ CLANG_EXTRAS \ EISA \ - FMAKE \ HESIOD \ LLDB \ NAND \ Modified: head/usr.bin/Makefile ============================================================================== --- head/usr.bin/Makefile Tue Jun 16 20:34:39 2015 (r284463) +++ head/usr.bin/Makefile Tue Jun 16 20:58:33 2015 (r284464) @@ -253,10 +253,6 @@ SUBDIR+= file SUBDIR+= finger .endif -.if ${MK_FMAKE} != "no" -SUBDIR+= make -.endif - .if ${MK_FTP} != "no" SUBDIR+= ftp .endif