mirror of
				https://git.kernel.org/pub/scm/network/wireless/iwd.git
				synced 2025-11-04 08:57:29 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			293 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			293 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
if [ -f config.status ]; then
 | 
						|
	make maintainer-clean
 | 
						|
fi
 | 
						|
 | 
						|
./bootstrap && \
 | 
						|
    ./configure --enable-maintainer-mode \
 | 
						|
		--enable-debug \
 | 
						|
		--prefix=/usr \
 | 
						|
		--localstatedir=/var \
 | 
						|
		--enable-ofono \
 | 
						|
		--enable-sim-hardcoded \
 | 
						|
		--disable-dbus-policy \
 | 
						|
		--disable-systemd-service $*
 |