From owner-cvs-share Thu Sep 5 10:53:23 1996 Return-Path: owner-cvs-share Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id KAA05827 for cvs-share-outgoing; Thu, 5 Sep 1996 10:53:23 -0700 (PDT) Received: (from bde@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id KAA05806; Thu, 5 Sep 1996 10:53:14 -0700 (PDT) Date: Thu, 5 Sep 1996 10:53:14 -0700 (PDT) From: Bruce Evans Message-Id: <199609051753.KAA05806@freefall.freebsd.org> To: CVS-committers, cvs-all, cvs-share Subject: cvs commit: src/share/mk bsd.obj.mk Sender: owner-cvs-share@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk bde 96/09/05 10:53:14 Modified: share/mk bsd.obj.mk Log: Fixed `make objlink' (and `make obj' in the (non-default) OBJLINK case). Running them twice usually destroyed the target binary. E.g., the second `make objlink' in `make objlink; make; make objlink' replaced the `cat' binary by a symlink cat@ -> /usr/obj/usr/src/bin/cat. `ln -fs' is unusable when the target might be a symlink that resolves to a directory. Then -f applies to a file in the directory and not to the symlink. This seems to be the standard (and sometimes useful) behaviour. Revision Changes Path 1.8 +5 -3 src/share/mk/bsd.obj.mk