1
0
mirror of synced 2026-04-15 15:49:48 +00:00

Fix bashism in Makefile: [^y] -> [!y]

This commit is contained in:
Axel Beckert
2010-04-09 01:03:31 +02:00
parent 0dc86d6ccc
commit dd40247b13

View File

@@ -210,7 +210,7 @@ install: fixup-perms install-bin install-etc install-hooks install-libraries ins
#
manpages:
-mkdir -p man
cd bin; for i in *-*[^y]; do pod2man --release=${VERSION} --official --section=8 $$i ../man/$$i.8; done
cd bin; for i in *-*[!y]; do pod2man --release=${VERSION} --official --section=8 $$i ../man/$$i.8; done
for i in man/*.8; do gzip --force -9 $$i; done