From: Chris Hanson Date: Tue, 21 Mar 2000 05:10:57 +0000 (+0000) Subject: Add check for starting in correct location. X-Git-Tag: 20090517-FFI~4180 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=422bbef1aef77e72200ffaffb8c4388e5b40aba1;p=mit-scheme.git Add check for starting in correct location. --- diff --git a/etc/build-tree.sh b/etc/build-tree.sh index e98e2aec7..82046bd68 100755 --- a/etc/build-tree.sh +++ b/etc/build-tree.sh @@ -1,11 +1,15 @@ #!/bin/sh # -# $Id: build-tree.sh,v 1.1 2000/03/21 05:09:28 cph Exp $ +# $Id: build-tree.sh,v 1.2 2000/03/21 05:10:57 cph Exp $ # # Program to finish setting up the Scheme source tree after it is # checked out. Adds required links, builds TAGS files, etc. # -cd v7 +if [ ! -d 6001 ] +then + echo "This must be run from the top-level Scheme source directory." + exit 1 +fi for directory in 6001 cref edwin rcs runtime sf sos win32 do (cd $directory; ln -s ../Makefile.std Makefile)