Add check for starting in correct location.
authorChris Hanson <org/chris-hanson/cph>
Tue, 21 Mar 2000 05:10:57 +0000 (05:10 +0000)
committerChris Hanson <org/chris-hanson/cph>
Tue, 21 Mar 2000 05:10:57 +0000 (05:10 +0000)
etc/build-tree.sh

index e98e2aec7bc46f149d1457a7aa6154a7746ee398..82046bd68658545bd33e702b4a94beab75cddb99 100755 (executable)
@@ -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)