From 48a94018a3b2b39fe3a2e17f1d7354bd6b704f53 Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Mon, 16 Oct 2000 19:29:00 +0000 Subject: [PATCH] Fix some typos. Adjust script so that it can be called again on a partially-processed tree. --- v7/src/etc/bootstrap.sh | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/v7/src/etc/bootstrap.sh b/v7/src/etc/bootstrap.sh index deb06e598..29c8cbb92 100755 --- a/v7/src/etc/bootstrap.sh +++ b/v7/src/etc/bootstrap.sh @@ -1,6 +1,6 @@ #!/bin/sh # -# $Id: bootstrap.sh,v 1.3 2000/10/16 18:43:42 cph Exp $ +# $Id: bootstrap.sh,v 1.4 2000/10/16 19:29:00 cph Exp $ # # Copyright (c) 2000 Massachusetts Institute of Technology # @@ -68,8 +68,8 @@ fi # Compile the C code. ( cd microcode - unxutl/config "${cname}" - make + [ -f cf.h ] || unxutl/config "${cname}" + [ -x scheme ] || make ) # Compile the Scheme code. @@ -78,16 +78,15 @@ fi # Build the lib directory. rm -rf lib mkdir lib -mkdir edwin -mkdir edwin/etc -mkdir edwin/info +mkdir lib/edwin +mkdir lib/edwin/etc +mkdir lib/edwin/info cp -p etc/optiondb.scm lib/. ( cd lib ln -s .. SRC ln -s SRC/runtime options - ln -s ../../edwin edwin/autoload - ln -s ../cref . + ln -s ../SRC/edwin edwin/autoload ) cp -p microcode/utabmd.bin lib/. -- 2.25.1