From 6dedbef3d4a7566e91b4c62735f458713a359796 Mon Sep 17 00:00:00 2001 From: Jan Engelhardt Date: Mon, 19 Jul 2010 11:14:29 +0200 Subject: [PATCH] doc: keep manpage ordered `find` could return entries out of order. --- Makefile.mans.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.mans.in b/Makefile.mans.in index 49f447a..68cc36a 100644 --- a/Makefile.mans.in +++ b/Makefile.mans.in @@ -3,8 +3,8 @@ srcdir := @srcdir@ -wcman_matches := $(shell find "${srcdir}" -name 'libxt_[a-z]*.man') -wcman_targets := $(shell find "${srcdir}" -name 'libxt_[A-Z]*.man') +wcman_matches := $(shell find "${srcdir}" -name 'libxt_[a-z]*.man' | sort) +wcman_targets := $(shell find "${srcdir}" -name 'libxt_[A-Z]*.man' | sort) wlist_matches := $(patsubst ${srcdir}/libxt_%.man,%,${wcman_matches}) wlist_targets := $(patsubst ${srcdir}/libxt_%.man,%,${wcman_targets})