- Timestamp:
- Apr 4, 2006, 1:44:04 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/scripts/tardis-scratch-checkout.pl
r7277 r7278 2 2 3 3 4 echo$_[1];4 print $_[1]; 5 5 $username = `whoami`; 6 chomp $username; 6 7 7 8 9 mkdir ("/scratch/$username"); 10 mkdir ("/scratch/$username\/orxonox"); 8 11 9 mkdir ("/scratch/$username/orxonox"); 10 svn co https://svn.orxonox.net/orxonox/trunk /scratch/orxonox/trunk 11 cd "/scratch/$username/orxonox/trunk"; 12 13 open(SVN_CO, "svn co https://svn.orxonox.net/orxonox/trunk /scratch/$username\/orxonox/trunk |"); 14 while(<SVN_CO>){ 15 print $_; 16 } 17 18 chdir("/scratch/$username\/orxonox/trunk"); 19 12 20 13 21 print "executing autogen.sh"; 14 22 open( AUTOGEN , "./autogen.sh |"); 23 while(<AUTOGEN>){ 24 print $_; 25 } 15 26 27 print "executing configure for tardis"; 28 open(CONFIGURE, "./configure --with-tardis |"); 29 while(<CONFIGURE>){ 30 printf $_; 31 } 32 open(MAKE, "make -j3|"); 33 while(<MAKE>) { 34 print $_; 35 } 16 36 17 echo "executing configure for tardis"18 ./configure --with-tardis19 20 21 make -j5
Note: See TracChangeset
for help on using the changeset viewer.