mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
moved bagel checkout for windows so that build from scratch works
This commit is contained in:
@@ -1,6 +1,26 @@
|
||||
#!/bin/sh
|
||||
|
||||
|
||||
### -- CHECK TO MAKE SURE BAGEL EXISTS -------------------------
|
||||
|
||||
# move to base 'processing' directory
|
||||
cd ../..
|
||||
|
||||
# make sure bagel exists, if not, check it out of cvs
|
||||
if test -d bagel
|
||||
then
|
||||
else
|
||||
echo Doing CVS checkout of bagel...
|
||||
cvs co bagel
|
||||
cd bagel
|
||||
cvs update -P
|
||||
cd ..
|
||||
fi
|
||||
|
||||
# back to where we came from
|
||||
cd build/windows
|
||||
|
||||
|
||||
### -- SETUP WORK DIR -------------------------------------------
|
||||
|
||||
if test -d work
|
||||
@@ -74,17 +94,6 @@ cd ../..
|
||||
|
||||
### -- BUILD BAGEL ----------------------------------------------
|
||||
|
||||
# make sure bagel exists, if not, check it out of cvs
|
||||
if test -d bagel
|
||||
then
|
||||
else
|
||||
echo Doing CVS checkout of bagel...
|
||||
cvs co bagel
|
||||
cd bagel
|
||||
cvs update -P
|
||||
cd ..
|
||||
fi
|
||||
|
||||
cd bagel
|
||||
|
||||
# clear jikespath to avoid problems if it is defined elsewhere
|
||||
|
||||
Reference in New Issue
Block a user