add man7 to subdirs list
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>
This commit is contained in:
parent
5bd9dd49ae
commit
5746307300
|
|
@ -2,7 +2,7 @@ INSTALL=install
|
|||
INSTALLDIR=install -m 0755 -d
|
||||
INSTALLMAN=install -m 0644
|
||||
|
||||
SUBDIRS = man3 man8
|
||||
SUBDIRS = man3 man7 man8
|
||||
|
||||
all:
|
||||
@for subdir in $(SUBDIRS); do $(MAKE) -C $$subdir; done
|
||||
|
|
|
|||
|
|
@ -0,0 +1,13 @@
|
|||
MAN7PAGES = tc-hfsc.7
|
||||
|
||||
all:
|
||||
|
||||
distclean: clean
|
||||
|
||||
clean:
|
||||
|
||||
install:
|
||||
$(INSTALLDIR) $(DESTDIR)$(MANDIR)/man7
|
||||
$(INSTALLMAN) $(MAN7PAGES) $(DESTDIR)$(MANDIR)/man7
|
||||
|
||||
.PHONY: install clean distclean
|
||||
Loading…
Reference in New Issue