]> git.ipfire.org Git - thirdparty/xtables-addons.git/commitdiff
doc: keep manpage ordered
authorJan Engelhardt <jengelh@medozas.de>
Mon, 19 Jul 2010 09:14:29 +0000 (11:14 +0200)
committerJan Engelhardt <jengelh@medozas.de>
Mon, 19 Jul 2010 09:14:29 +0000 (11:14 +0200)
`find` could return entries out of order.

Makefile.mans.in

index 49f447adf1fccd928829b975096531e19d2b7333..68cc36ab84d4610375b62f85c4566535ea44a4ec 100644 (file)
@@ -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})