28 lines
		
	
	
		
			378 B
		
	
	
	
		
			Perl
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			378 B
		
	
	
	
		
			Perl
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/perl
 | |
| # vim: set ts=2 sw=2 tw=99 noet: 
 | |
| 
 | |
| use File::Basename;
 | |
| 
 | |
| my ($myself, $path) = fileparse($0);
 | |
| chdir($path);
 | |
| 
 | |
| require 'helpers.pm';
 | |
| 
 | |
| chdir('../../../OUTPUT');
 | |
| 
 | |
| if ($^O eq "linux" || $^O eq "darwin") {
 | |
| 	system("python3.1 build.py 2>&1");
 | |
| } else {
 | |
| 	system("C:\\Python31\\python.exe build.py 2>&1");
 | |
| }
 | |
| 
 | |
| if ($? != 0)
 | |
| {
 | |
| 	die "Build failed: $!\n";
 | |
| }
 | |
| else
 | |
| {
 | |
| 	exit(0);
 | |
| }
 | |
| 
 |