Don't copy files from main tree; check them out of CVS.
authorChris Hanson <org/chris-hanson/cph>
Mon, 16 Oct 2000 18:58:18 +0000 (18:58 +0000)
committerChris Hanson <org/chris-hanson/cph>
Mon, 16 Oct 2000 18:58:18 +0000 (18:58 +0000)
v7/dist/make-src-files

index a03891791a12ad7e65702352d66dbc9343430759..9648f21dcdfe162d8e21c4d95e1f9d3e0a19b005 100755 (executable)
@@ -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