Fix bashism in Makefile: [^y] -> [!y]
This commit is contained in:
2
Makefile
2
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
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user