diff options
author | jb <jb@FreeBSD.org> | 1998-08-30 02:52:04 +0000 |
---|---|---|
committer | jb <jb@FreeBSD.org> | 1998-08-30 02:52:04 +0000 |
commit | 2b6505f997aac707339144a237f95039594d39d4 (patch) | |
tree | c66d25bb4948a86d58614cb64bcc6f305e9d7ece /release | |
parent | 13a816f577a2a4b0841386bc9d437971f706a097 (diff) | |
download | FreeBSD-src-2b6505f997aac707339144a237f95039594d39d4.zip FreeBSD-src-2b6505f997aac707339144a237f95039594d39d4.tar.gz |
BINFORMAT -> OBJFORMAT ready for E-day.
Diffstat (limited to 'release')
-rw-r--r-- | release/Makefile | 8 | ||||
-rwxr-xr-x | release/scripts/proflibs-make.sh | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/release/Makefile b/release/Makefile index 5279cf7..46ffb5d 100644 --- a/release/Makefile +++ b/release/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.368 1998/08/16 01:24:40 jkh Exp $ +# $Id: Makefile,v 1.369 1998/08/23 00:52:18 gpalmer Exp $ # # make release CHROOTDIR=/some/dir BUILDNAME=somename [ RELEASETAG=tag ] # @@ -33,7 +33,7 @@ RELEASEDOCMODULE?= doc RELEASEPORTSMODULE?= ports # Unless set elsewhere, indicate the object format we'll be using. -BINFORMAT?= aout +OBJFORMAT?= aout # Uncomment this to disable the doc.1 target. It is also an ERROR # to set NOPORTS and not set NODOC since docs depend on ports. @@ -350,7 +350,7 @@ release.5: @for i in ${DISTRIBUTIONS}; do \ if [ -f ${.CURDIR}/scripts/$${i}-make.sh ]; then \ echo -n "Running $$i dist creation script... "; \ - env BINFORMAT=${BINFORMAT} RD=${RD} sh ${.CURDIR}/scripts/$${i}-make.sh || echo "$$i distribution script returned bad status."; \ + env OBJFORMAT=${OBJFORMAT} RD=${RD} sh ${.CURDIR}/scripts/$${i}-make.sh || echo "$$i distribution script returned bad status."; \ echo "Done."; \ fi \ done \ @@ -358,7 +358,7 @@ release.5: # Create symlinks for the MD5-based crypt lib, too. The # automatically created links still point to the DES stuff, # which went into its own distribution. - for i in ${RD}/trees/bin/usr/lib/${BINFORMAT}/libscrypt* ; do \ + for i in ${RD}/trees/bin/usr/lib/${OBJFORMAT}/libscrypt* ; do \ c=`echo $$i | sed -e 's/libscrypt/libcrypt/'` ; \ rm -f $$c ; \ ln -s `basename $$i` $$c ; \ diff --git a/release/scripts/proflibs-make.sh b/release/scripts/proflibs-make.sh index b7da8ab..19bd15c 100755 --- a/release/scripts/proflibs-make.sh +++ b/release/scripts/proflibs-make.sh @@ -1,8 +1,8 @@ #!/bin/sh # Move the profiled libraries out to their own dist -for i in ${RD}/trees/bin/usr/lib/${BINFORMAT}/*_p.a; do +for i in ${RD}/trees/bin/usr/lib/${OBJFORMAT}/*_p.a; do if [ -f $i ]; then - mv $i ${RD}/trees/proflibs/usr/lib/${BINFORMAT}; + mv $i ${RD}/trees/proflibs/usr/lib/${OBJFORMAT}; fi; done |