Used by qubes.StartApp so that we can override distribution-provided .desktop files. The mechanism is introduced to run gnome-terminal with --wait option, so that it's compatible with DispVMs. Fixes QubesOS/qubes-issues#2581.
		
			
				
	
	
		
			7 lines
		
	
	
		
			201 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
		
			201 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
 | 
						|
DROPINS_DIR = /etc/qubes/applications
 | 
						|
 | 
						|
install:
 | 
						|
	for f in *.desktop; do install -m 0644 -D $$f $(DESTDIR)$(DROPINS_DIR)/$$f.d/30_qubes.conf; done
 | 
						|
	install -m 0644 README.txt $(DESTDIR)$(DROPINS_DIR)/
 |