From 8ef80bcbbd21c01719681b95d3d17d2c827d2699 Mon Sep 17 00:00:00 2001 From: Ido Schimmel Date: Wed, 9 Oct 2024 09:20:53 +0300 Subject: [PATCH] man: Add ip-rule(8) as generation target In a similar fashion to other man pages, add ip-rule(8) as generation target so that we could use variable substitutions there in a subsequent patch. Signed-off-by: Ido Schimmel Reviewed-by: Daniel Machon Reviewed-by: Guillaume Nault Signed-off-by: David Ahern --- man/man8/.gitignore | 1 + man/man8/Makefile | 2 +- man/man8/{ip-rule.8 => ip-rule.8.in} | 0 3 files changed, 2 insertions(+), 1 deletion(-) rename man/man8/{ip-rule.8 => ip-rule.8.in} (100%) diff --git a/man/man8/.gitignore b/man/man8/.gitignore index 7b08e9114..08098a2fb 100644 --- a/man/man8/.gitignore +++ b/man/man8/.gitignore @@ -3,3 +3,4 @@ ip-address.8 ip-link.8 ip-netns.8 ip-route.8 +ip-rule.8 diff --git a/man/man8/Makefile b/man/man8/Makefile index 6dab182fa..82cbe89f7 100644 --- a/man/man8/Makefile +++ b/man/man8/Makefile @@ -1,5 +1,5 @@ # SPDX-License-Identifier: GPL-2.0 -TARGETS = ip-address.8 ip-link.8 ip-netns.8 ip-route.8 +TARGETS = ip-address.8 ip-link.8 ip-netns.8 ip-route.8 ip-rule.8 MAN8PAGES = $(TARGETS) $(filter-out $(TARGETS),$(wildcard *.8)) diff --git a/man/man8/ip-rule.8 b/man/man8/ip-rule.8.in similarity index 100% rename from man/man8/ip-rule.8 rename to man/man8/ip-rule.8.in -- 2.47.2