Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 28 Jan 2000 09:33:32 -0700
From:      Warner Losh <imp@village.org>
To:        current@freebsd.org
Subject:   Makefile.inc1 change
Message-ID:  <200001281633.JAA62420@harmony.village.org>

next in thread | raw e-mail | index | archive | help

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




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200001281633.JAA62420>