- Timestamp:
- Apr 4, 2006, 12:53:39 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/scripts/tardis-scratch-checkout.pl
r7192 r7277 1 #!/ bin/bash1 #!/usr/bin/perl 2 2 3 mkdir /scratch/orxonox 3 4 echo $_[1]; 5 $username = `whoami`; 6 7 8 9 mkdir ("/scratch/$username/orxonox"); 4 10 svn co https://svn.orxonox.net/orxonox/trunk /scratch/orxonox/trunk 5 cd /scratch/orxonox/trunk 6 ./autogen.sh 11 cd "/scratch/$username/orxonox/trunk"; 12 13 print "executing autogen.sh"; 14 open( AUTOGEN , "./autogen.sh |"); 15 16 17 echo "executing configure for tardis" 7 18 ./configure --with-tardis 19 20 8 21 make -j5
Note: See TracChangeset
for help on using the changeset viewer.