From: Mike Frysinger Date: Fri, 11 Jan 2013 06:56:28 +0000 (+0000) Subject: add man7 to subdirs list X-Git-Tag: v3.8.0~3^2~27 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5746307300eea81e9534698fd52163e737651c48;p=thirdparty%2Fiproute2.git 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 Signed-off-by: Mike Frysinger --- diff --git a/man/Makefile b/man/Makefile index 67fea0566..9a60fa7c7 100644 --- a/man/Makefile +++ b/man/Makefile @@ -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 diff --git a/man/man7/Makefile b/man/man7/Makefile new file mode 100644 index 000000000..ccfd8398c --- /dev/null +++ b/man/man7/Makefile @@ -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