aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rwxr-xr-xcheck-release.sh1
-rwxr-xr-xdist.sh2
-rw-r--r--man/CMakeLists.txt4
-rwxr-xr-xupdate.sh2
5 files changed, 6 insertions, 4 deletions
diff --git a/.gitignore b/.gitignore
index e39954c..ab97398 100644
--- a/.gitignore
+++ b/.gitignore
@@ -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
50test-driver 51test-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
57echo "differences between release and regenerated release tag:" 57echo "differences between release and regenerated release tag:"
58diff -urN \ 58diff -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 \
diff --git a/dist.sh b/dist.sh
index bdb549a..9a2f001 100755
--- a/dist.sh
+++ b/dist.sh
@@ -1,7 +1,7 @@
1#!/bin/sh 1#!/bin/sh
2set -e 2set -e
3 3
4rm -f man/*.1 man/*.3 include/openssl/*.h 4rm -f man/*.[35] include/openssl/*.h
5./autogen.sh 5./autogen.sh
6./configure 6./configure
7make -j2 distcheck 7make -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 )
11endif(ENABLE_LIBRESSL_INSTALL) 11endif(ENABLE_LIBRESSL_INSTALL)
diff --git a/update.sh b/update.sh
index ec69dfc..8ffb507 100755
--- a/update.sh
+++ b/update.sh
@@ -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