mirror of
				https://git.kernel.org/pub/scm/network/wireless/iwd.git
				synced 2025-10-29 19:17:31 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			350 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			350 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-wired \
 | |
| 		--enable-hwsim \
 | |
| 		--enable-tools \
 | |
| 		--enable-ofono \
 | |
| 		--enable-sim-hardcoded \
 | |
| 		--disable-dbus-policy \
 | |
| 		--disable-systemd-service $*
 | 
