From: Patrick McHardy Date: Mon, 14 Apr 2014 10:04:31 +0000 (+0200) Subject: doc: fix make install problems X-Git-Tag: v0.2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b3e2f7f71e8cd6945e18a99a489aedc6f9860f74;p=thirdparty%2Fnftables.git doc: fix make install problems -e INSTALL doc /usr/bin/install: cannot stat 'doc/nftables.8': No such file or directory make[1]: *** [install] Error 1 make: *** [doc] Error 2 Rename everything to nft.* to fix this up. Reported-by: Ana Rey Signed-off-by: Patrick McHardy --- diff --git a/doc/.gitignore b/doc/.gitignore index fc24d499..8e11d1e4 100644 --- a/doc/.gitignore +++ b/doc/.gitignore @@ -1,2 +1,2 @@ -nftables.8 -nftables.pdf +nft.8 +nft.pdf diff --git a/doc/Makefile.in b/doc/Makefile.in index e0732adb..1ec856c9 100644 --- a/doc/Makefile.in +++ b/doc/Makefile.in @@ -1,5 +1,5 @@ -mandocs-@CONFIG_MAN@ += doc/nftables.8 -pdfdocs-@CONFIG_PDF@ += doc/nftables.pdf +mandocs-@CONFIG_MAN@ += doc/nft.8 +pdfdocs-@CONFIG_PDF@ += doc/nft.pdf all: $(mandocs-y) $(pdfdocs-y) clean: diff --git a/doc/nftables.xml b/doc/nft.xml similarity index 100% rename from doc/nftables.xml rename to doc/nft.xml