mirror of
				https://git.proxmox.com/git/mirror_iproute2
				synced 2025-11-04 00:28:26 +00:00 
			
		
		
		
	The man dir misses the man7 as a subdir which means none of the pages get installed. URL: https://bugs.gentoo.org/451166 Reported-by: Marcin Mirosław <bug@mejor.pl> Signed-off-by: Mike Frysinger <vapier@gentoo.org>
		
			
				
	
	
		
			14 lines
		
	
	
		
			190 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			190 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
MAN7PAGES = tc-hfsc.7
 | 
						|
 | 
						|
all:
 | 
						|
 | 
						|
distclean: clean
 | 
						|
 | 
						|
clean:
 | 
						|
 | 
						|
install:
 | 
						|
	$(INSTALLDIR) $(DESTDIR)$(MANDIR)/man7
 | 
						|
	$(INSTALLMAN) $(MAN7PAGES) $(DESTDIR)$(MANDIR)/man7
 | 
						|
 | 
						|
.PHONY: install clean distclean
 |