forked from mirrors/gecko-dev
		
	 3236fcc629
			
		
	
	
		3236fcc629
		
	
	
	
	
		
			
			This affects the location of the artifacts directory, so adjust the scripts and artifact definitions as a consequence. --HG-- extra : rebase_source : 008b8cf33957eabfcacee61de8a260b5df146ab4
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			328 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			328 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
| #!/bin/bash
 | |
| set -x -e -v
 | |
| 
 | |
| # This script is for building binutils for Linux.
 | |
| 
 | |
| WORKSPACE=$HOME/workspace
 | |
| HOME_DIR=$WORKSPACE/build
 | |
| UPLOAD_DIR=$HOME/artifacts
 | |
| 
 | |
| cd $HOME_DIR/src
 | |
| 
 | |
| build/unix/build-binutils/build-binutils.sh $HOME_DIR
 | |
| 
 | |
| # Put a tarball in the artifacts dir
 | |
| mkdir -p $UPLOAD_DIR
 | |
| cp $HOME_DIR/binutils.tar.* $UPLOAD_DIR
 |