mirror of
				https://gitlab.freedesktop.org/pipewire/pipewire.git
				synced 2025-11-03 09:01:54 -05:00 
			
		
		
		
	An unquoted $@ will break for arguments with spaces in their names. Unquoted $@ will work until it doesn't, and then it can be tricky to track down exactly what went wrong. Using "$@" will save someone some headache in the future.
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			162 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			162 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
# Only there to make jhbuild happy
 | 
						|
 | 
						|
git submodule init
 | 
						|
git submodule update
 | 
						|
 | 
						|
rm -rf ./build
 | 
						|
mkdir build
 | 
						|
meson build "$@"
 | 
						|
ln -s build/Makefile Makefile
 |