mirror of
				https://git.kernel.org/pub/scm/network/wireless/iwd.git
				synced 2025-10-30 20:37:26 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			245 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			245 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| if [ -f config.status ]; then
 | |
| 	make maintainer-clean
 | |
| fi
 | |
| 
 | |
| ./bootstrap && \
 | |
|     ./configure --enable-maintainer-mode \
 | |
| 		--enable-debug \
 | |
| 		--localstatedir=/var \
 | |
| 		--prefix=/usr $* \
 | |
| 		--sysconfdir=/etc/iwd \
 | |
| 		--with-dbusconfdir=/etc
 | 
