mirror of
				https://github.com/samba-team/samba.git
				synced 2025-10-31 12:23:52 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			155 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			155 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh
 | |
| # install miscellaneous files
 | |
| 
 | |
| SRCDIR="$1"
 | |
| PKGCONFIGDIR="$2"
 | |
| shift
 | |
| shift
 | |
| 
 | |
| cd $SRCDIR || exit 1
 | |
| 
 | |
| for I in $*
 | |
| do
 | |
| 	cp $I $PKGCONFIGDIR
 | |
| done
 | |
| 
 | |
| exit 0
 |