diff options
author | jkh <jkh@FreeBSD.org> | 1998-05-30 12:15:02 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1998-05-30 12:15:02 +0000 |
commit | 0d948cca0487b241fec6cc5211d55dc5ffabb72c (patch) | |
tree | 1e144281118471a110e93de5b5846f42cb1c643b | |
parent | 7f2993c7feeb596eb39a482f15e7f8653a33fd00 (diff) | |
download | FreeBSD-src-0d948cca0487b241fec6cc5211d55dc5ffabb72c.zip FreeBSD-src-0d948cca0487b241fec6cc5211d55dc5ffabb72c.tar.gz |
A bit of additional ELF changeover stuff I forgot to conditionalize earlier.
Todo: revisit and make work with either aout or ELF.
-rw-r--r-- | release/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/release/Makefile b/release/Makefile index 8ef45ff..f392414 100644 --- a/release/Makefile +++ b/release/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.351 1998/05/20 01:06:32 jkh Exp $ +# $Id: Makefile,v 1.352 1998/05/29 19:36:12 jkh Exp $ # # make release CHROOTDIR=/some/dir BUILDNAME=somename [ RELEASETAG=tag ] # @@ -228,9 +228,11 @@ rerelease release: echo "(cd etc; make distribution)" >> ${CHROOTDIR}/mk # Now we've got our own shared libs, remove the bootstrapping # libs again. +.if !exists(/usr/lib/aout/) echo "rm -f /usr/lib/compat/*" >> ${CHROOTDIR}/mk echo "ldconfig /usr/lib" >> ${CHROOTDIR}/mk .endif +.endif .if make(rerelease) echo "make all install" >> ${CHROOTDIR}/mk .endif |