From dd40247b133b88a094592966538acc93721225ff Mon Sep 17 00:00:00 2001 From: Axel Beckert Date: Fri, 9 Apr 2010 01:03:31 +0200 Subject: [PATCH] Fix bashism in Makefile: [^y] -> [!y] --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b624dc2..af29090 100644 --- a/Makefile +++ b/Makefile @@ -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