diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rwxr-xr-x | check-release.sh | 1 | ||||
-rwxr-xr-x | dist.sh | 2 | ||||
-rw-r--r-- | man/CMakeLists.txt | 4 | ||||
-rwxr-xr-x | update.sh | 2 |
5 files changed, 6 insertions, 4 deletions
@@ -45,6 +45,7 @@ Makefile.in | |||
45 | # man pages | 45 | # man pages |
46 | *.1 | 46 | *.1 |
47 | *.3 | 47 | *.3 |
48 | *.5 | ||
48 | 49 | ||
49 | # tests | 50 | # tests |
50 | test-driver | 51 | test-driver |
diff --git a/check-release.sh b/check-release.sh index a7cf8ec..bdafa08 100755 --- a/check-release.sh +++ b/check-release.sh | |||
@@ -57,6 +57,7 @@ fi | |||
57 | echo "differences between release and regenerated release tag:" | 57 | echo "differences between release and regenerated release tag:" |
58 | diff -urN \ | 58 | diff -urN \ |
59 | -x *.3 \ | 59 | -x *.3 \ |
60 | -x *.5 \ | ||
60 | -x Makefile.in \ | 61 | -x Makefile.in \ |
61 | -x aclocal.m4 \ | 62 | -x aclocal.m4 \ |
62 | -x compile \ | 63 | -x compile \ |
@@ -1,7 +1,7 @@ | |||
1 | #!/bin/sh | 1 | #!/bin/sh |
2 | set -e | 2 | set -e |
3 | 3 | ||
4 | rm -f man/*.1 man/*.3 include/openssl/*.h | 4 | rm -f man/*.[35] include/openssl/*.h |
5 | ./autogen.sh | 5 | ./autogen.sh |
6 | ./configure | 6 | ./configure |
7 | make -j2 distcheck | 7 | make -j2 distcheck |
diff --git a/man/CMakeLists.txt b/man/CMakeLists.txt index 639b9ed..462a831 100644 --- a/man/CMakeLists.txt +++ b/man/CMakeLists.txt | |||
@@ -5,7 +5,7 @@ if(ENABLE_LIBRESSL_INSTALL) | |||
5 | ) | 5 | ) |
6 | 6 | ||
7 | install(DIRECTORY . | 7 | install(DIRECTORY . |
8 | DESTINATION ${CMAKE_INSTALL_MANDIR}/man1 | 8 | DESTINATION ${CMAKE_INSTALL_MANDIR}/man5 |
9 | FILES_MATCHING PATTERN "*.1" | 9 | FILES_MATCHING PATTERN "*.5" |
10 | ) | 10 | ) |
11 | endif(ENABLE_LIBRESSL_INSTALL) | 11 | endif(ENABLE_LIBRESSL_INSTALL) |
@@ -347,7 +347,7 @@ echo dist_man_MANS = >> man/Makefile.am | |||
347 | echo "dist_man_MANS += $NAME" >> Makefile.am | 347 | echo "dist_man_MANS += $NAME" >> Makefile.am |
348 | done | 348 | done |
349 | 349 | ||
350 | for i in `ls -1 $libcrypto_src/man/*.3 | sort`; do | 350 | for i in `ls -1 $libcrypto_src/man/*.[35] | sort`; do |
351 | NAME=`basename "$i"` | 351 | NAME=`basename "$i"` |
352 | $CP $i . | 352 | $CP $i . |
353 | echo "dist_man_MANS += $NAME" >> Makefile.am | 353 | echo "dist_man_MANS += $NAME" >> Makefile.am |