From owner-freebsd-current Fri Jan 28 8:33:20 2000 Delivered-To: freebsd-current@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (Postfix) with ESMTP id 7F07114D20 for ; Fri, 28 Jan 2000 08:33:17 -0800 (PST) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.9.3/8.9.3) with ESMTP id JAA11607 for ; Fri, 28 Jan 2000 09:33:16 -0700 (MST) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id JAA62420 for ; Fri, 28 Jan 2000 09:33:32 -0700 (MST) Message-Id: <200001281633.JAA62420@harmony.village.org> To: current@freebsd.org Subject: Makefile.inc1 change Date: Fri, 28 Jan 2000 09:33:32 -0700 From: Warner Losh Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG The following has survived a make buildworld at least once. It optimizes buildworld a little by not building fortran as part of the build tools. This looks like a safe change to make, since we have no fortran in the tree that needs to get built. It doesn't disable building of fortran later in the build, just from building it potentially twice. Comments? Warner Index: Makefile.inc1 =================================================================== RCS file: /home/imp/FreeBSD/CVS/src/Makefile.inc1,v retrieving revision 1.133 diff -u -r1.133 Makefile.inc1 --- Makefile.inc1 2000/01/24 20:11:53 1.133 +++ Makefile.inc1 2000/01/28 09:21:39 @@ -503,10 +503,6 @@ _share= share/syscons/scrnmaps .endif -.if !defined(NO_FORTRAN) -_fortran= gnu/usr.bin/cc/f771 -.endif - .if exists(${.CURDIR}/kerberosIV) && exists(${.CURDIR}/crypto) && \ !defined(NOCRYPT) && defined(MAKE_KERBEROS4) _libroken4= kerberosIV/lib/libroken @@ -518,7 +514,7 @@ .endif build-tools: -.for _tool in bin/sh ${_games} gnu/usr.bin/cc/cc_tools ${_fortran} \ +.for _tool in bin/sh ${_games} gnu/usr.bin/cc/cc_tools \ ${_libroken4} ${_libroken5} lib/libncurses ${_share} cd ${.CURDIR}/${_tool}; ${MAKE} build-tools .endfor To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message