diff options
author | jkh <jkh@FreeBSD.org> | 1994-12-23 05:11:18 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1994-12-23 05:11:18 +0000 |
commit | 92495f8331471c4b72fe0037463cdac16b87b02e (patch) | |
tree | c7d8272b166bc0bea7f121bc169242a81d142e7a /release | |
parent | 5ded0ab8d2c6f2247d03cd00f53aa94ef0cbbe49 (diff) | |
download | FreeBSD-src-92495f8331471c4b72fe0037463cdac16b87b02e.zip FreeBSD-src-92495f8331471c4b72fe0037463cdac16b87b02e.tar.gz |
Miscellaneous fixes for the snapshot.
Diffstat (limited to 'release')
-rw-r--r-- | release/instdist.sh | 7 | ||||
-rw-r--r-- | release/miscfuncs.sh | 4 |
2 files changed, 8 insertions, 3 deletions
diff --git a/release/instdist.sh b/release/instdist.sh index 85672fe..e8c685c 100644 --- a/release/instdist.sh +++ b/release/instdist.sh @@ -10,7 +10,7 @@ # putting your name on top after doing something trivial like reindenting # it, just to make it look like you wrote it!). # -# $Id: instdist.sh,v 1.45 1994/12/23 02:55:07 jkh Exp $ +# $Id: instdist.sh,v 1.46 1994/12/23 03:30:02 jkh Exp $ if [ "${_INSTINST_SH_LOADED_}" = "yes" ]; then return 0 @@ -168,6 +168,11 @@ the files yourself."; then return 1; fi media_extract_dist() { + if [ ! -f do_cksum.sh ]; then + if [ -f ${MEDIA_DISTRIBUTION}/do_cksum.sh ]; then + cd ${MEDIA_DISTRIBUTION} + fi + fi if [ -f do_cksum.sh ]; then message "Verifying checksums for distribution. Please wait!" if sh ./do_cksum.sh; then diff --git a/release/miscfuncs.sh b/release/miscfuncs.sh index 6afca29..0b95a1e 100644 --- a/release/miscfuncs.sh +++ b/release/miscfuncs.sh @@ -10,7 +10,7 @@ # putting your name on top after doing something trivial like reindenting # it, just to make it look like you wrote it!). # -# $Id: miscfuncs.sh,v 1.11 1994/11/28 22:13:06 jkh Exp $ +# $Id: miscfuncs.sh,v 1.12 1994/12/01 13:46:13 jkh Exp $ if [ "${_MISCFUNCS_SH_LOADED_}" = "yes" ]; then return 0 @@ -22,7 +22,7 @@ PATH=/usr/bin:/usr/sbin:/bin:/sbin:/stand export PATH # Keep this current with the distribution! -DISTNAME="2.0-RELEASE" +DISTNAME="2.0-941222-SNAP" # Express or Custom install? INSTALL_TYPE="" |