Land #348, include .5 manpages

This commit is contained in:
Brent Cook 2017-09-17 10:08:19 -05:00
commit 6054891d43
5 changed files with 6 additions and 4 deletions

1
.gitignore vendored
View File

@ -45,6 +45,7 @@ Makefile.in
# man pages
*.1
*.3
*.5
# tests
test-driver

View File

@ -57,6 +57,7 @@ fi
echo "differences between release and regenerated release tag:"
diff -urN \
-x *.3 \
-x *.5 \
-x Makefile.in \
-x aclocal.m4 \
-x compile \

View File

@ -1,7 +1,7 @@
#!/bin/sh
set -e
rm -f man/*.1 man/*.3 include/openssl/*.h
rm -f man/*.[35] include/openssl/*.h
./autogen.sh
./configure
make -j2 distcheck

View File

@ -5,7 +5,7 @@ if(ENABLE_LIBRESSL_INSTALL)
)
install(DIRECTORY .
DESTINATION ${CMAKE_INSTALL_MANDIR}/man1
FILES_MATCHING PATTERN "*.1"
DESTINATION ${CMAKE_INSTALL_MANDIR}/man5
FILES_MATCHING PATTERN "*.5"
)
endif(ENABLE_LIBRESSL_INSTALL)

View File

@ -347,7 +347,7 @@ echo dist_man_MANS = >> man/Makefile.am
echo "dist_man_MANS += $NAME" >> Makefile.am
done
for i in `ls -1 $libcrypto_src/man/*.3 | sort`; do
for i in `ls -1 $libcrypto_src/man/*.[35] | sort`; do
NAME=`basename "$i"`
$CP $i .
echo "dist_man_MANS += $NAME" >> Makefile.am