From: Chris Hanson Date: Mon, 16 Oct 2000 18:58:18 +0000 (+0000) Subject: Don't copy files from main tree; check them out of CVS. X-Git-Tag: 20090517-FFI~3252 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=8e60c201508663c96aa1a189fd14b07e5ebcb157;p=mit-scheme.git Don't copy files from main tree; check them out of CVS. --- diff --git a/v7/dist/make-src-files b/v7/dist/make-src-files index a03891791..9648f21dc 100755 --- a/v7/dist/make-src-files +++ b/v7/dist/make-src-files @@ -5,12 +5,13 @@ rm -rf ${prefix} mkdir ${prefix} source=/scheme/v7/src destination="${prefix}/src" -mkdir ${destination} -for file in 6001 ChangeLog COPYING Makefile.std TAGS compiler cref edwin imail microcode rcs runtime sf sos win32 -do - cpx -E ${source}/${file} ${destination} -done +( + cd ${prefix} + cvs -d /scheme/cvsroot checkout -d src v7/src + cd src + etc/build-tree.sh +) find ${destination} -type d -name CVS -print | xargs rm -rf find ${destination} -type f -print | xargs chmod a-w