buildcm script

hkt@ccrma.Stanford.EDU hkt@ccrma.Stanford.EDU
Thu, 21 Jul 94 12:58:35 -0700


several people have written to me asking what happened to the buildcm script. i removed it becuase the script disallowed error backtraceing when something went wrong in the building process. to build the system, just boot your lisp image and then load build.lisp, ie:

	% cd /lisp/cm/build
	% cl
	Allegro CL 3.1.20 [NeXT] (3/7/91)
	Copyright (C) 1985-1990, Franz Inc., Berkeley, CA, USA
	<cl> (load "build.lisp")

if you still want to use buildcm, here it is in all its glory:
---------------------------buildcm-------------------------------
#!/bin/csh -f

#
# build script for installing Common Music
#

if ($#argv == 1) then
	set lisp_image = $1
else
	echo "buildcm needs a base lisp image file specified"
        exit
endif

if (-e $lisp_image) then
	$lisp_image -qq -batch < build.lisp
else
	echo "$lisp_image does not exist."
endif

echo All done!