From owner-cvs-all Sat Aug 15 01:34:24 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA04826 for cvs-all-outgoing; Sat, 15 Aug 1998 01:34:24 -0700 (PDT) (envelope-from owner-cvs-all) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.15.68.22]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA04816; Sat, 15 Aug 1998 01:34:15 -0700 (PDT) (envelope-from bde@godzilla.zeta.org.au) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.7/8.8.7) id SAA28597; Sat, 15 Aug 1998 18:33:45 +1000 Date: Sat, 15 Aug 1998 18:33:45 +1000 From: Bruce Evans Message-Id: <199808150833.SAA28597@godzilla.zeta.org.au> To: cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, jb@FreeBSD.ORG Subject: Re: cvs commit: src/games/hack Makefile Sender: owner-cvs-all@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > Modified files: > games/hack Makefile > Log: > Build the makedefs program static to avoid trying to use the shared > loader before it has been installed in an aout to elf transition build. This was already fixed in rev.1.16 (honour CFLAGS ...). `make world' builds everything (that actually honours CFLAGS) static by putting -static in CFLAGS (except in the NOCLEAN case) to avoid hundreds of problems like this. NOCLEAN just can't be used for transition builds. Bruce