diff options
| author | Jordan K. Hubbard <jkh@FreeBSD.org> | 1994-12-23 05:11:18 +0000 |
|---|---|---|
| committer | Jordan K. Hubbard <jkh@FreeBSD.org> | 1994-12-23 05:11:18 +0000 |
| commit | 3ed375cb277c692d1004086a59c2c58ea0cfb555 (patch) | |
| tree | c7d8272b166bc0bea7f121bc169242a81d142e7a | |
| parent | 45cbbb298daf76d183ac4e40b56adea96c38d361 (diff) | |
Notes
| -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 85672fee1f24..e8c685c62854 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 6afca29549cb..0b95a1e0a79c 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="" |
