 0532c9ab4c
			
		
	
	0532c9ab4c
	
	
	
		
			
			scripts from 'anywhere' git-svn-id: https://svn.musicpd.org/mpd/trunk@4430 09075e82-0dd4-0310-85a5-a0d7c8717e4f
		
			
				
	
	
		
			26 lines
		
	
	
		
			344 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			344 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh
 | |
| PWD=`pwd`
 | |
| 
 | |
| ## If we're not in the scripts directory
 | |
| ## assume the base directory.
 | |
| if test "`basename $PWD`" == "scripts"; then
 | |
| 	cd ../
 | |
| else
 | |
| 	MYOLDPWD=`pwd`
 | |
| 	cd `dirname $0`/../
 | |
| fi
 | |
| 
 | |
| if test -e Makefile
 | |
| then
 | |
| 	make distclean
 | |
| fi
 | |
| ./autogen.sh
 | |
| make
 | |
| make dist
 | |
| 
 | |
| if test "`basename $PWD`" == "scripts"; then
 | |
| 	cd contrib/
 | |
| else
 | |
| 	cd $MYOLDPWD
 | |
| fi
 |