aboutsummaryrefslogtreecommitdiff
path: root/update.sh
diff options
context:
space:
mode:
Diffstat (limited to 'update.sh')
-rwxr-xr-xupdate.sh10
1 files changed, 6 insertions, 4 deletions
diff --git a/update.sh b/update.sh
index 22048ea..fe91b51 100755
--- a/update.sh
+++ b/update.sh
@@ -265,9 +265,9 @@ done
265echo "copying openssl(1) source" 265echo "copying openssl(1) source"
266$CP $bin_src/openssl/openssl.1 apps/openssl 266$CP $bin_src/openssl/openssl.1 apps/openssl
267$CP_LIBC $libc_src/stdlib/strtonum.c apps/openssl/compat 267$CP_LIBC $libc_src/stdlib/strtonum.c apps/openssl/compat
268$CP $libcrypto_src/cert.pem apps/openssl 268$CP $libcrypto_src/cert.pem .
269$CP $libcrypto_src/openssl.cnf apps/openssl 269$CP $libcrypto_src/openssl.cnf .
270$CP $libcrypto_src/x509v3.cnf apps/openssl 270$CP $libcrypto_src/x509v3.cnf .
271for i in `awk '/SOURCES|HEADERS|MANS/ { print $3 }' apps/openssl/Makefile.am` ; do 271for i in `awk '/SOURCES|HEADERS|MANS/ { print $3 }' apps/openssl/Makefile.am` ; do
272 if [ -e $bin_src/openssl/$i ]; then 272 if [ -e $bin_src/openssl/$i ]; then
273 $CP $bin_src/openssl/$i apps/openssl 273 $CP $bin_src/openssl/$i apps/openssl
@@ -327,6 +327,7 @@ chmod 755 tests/testssl
327 for i in `ls -1 *.h|sort`; do 327 for i in `ls -1 *.h|sort`; do
328 echo "opensslinclude_HEADERS += $i" >> Makefile.am 328 echo "opensslinclude_HEADERS += $i" >> Makefile.am
329 done 329 done
330 echo endif >> Makefile.am
330) 331)
331 332
332add_man_links() { 333add_man_links() {
@@ -362,9 +363,9 @@ done
362# copy manpages 363# copy manpages
363echo "copying manpages" 364echo "copying manpages"
364echo EXTRA_DIST = CMakeLists.txt > man/Makefile.am 365echo EXTRA_DIST = CMakeLists.txt > man/Makefile.am
366echo "if !ENABLE_LIBTLS_ONLY" >> man/Makefile.am
365echo dist_man3_MANS = >> man/Makefile.am 367echo dist_man3_MANS = >> man/Makefile.am
366echo dist_man5_MANS = >> man/Makefile.am 368echo dist_man5_MANS = >> man/Makefile.am
367
368(cd man 369(cd man
369 for i in `ls -1 $libssl_src/man/*.3 | sort`; do 370 for i in `ls -1 $libssl_src/man/*.3 | sort`; do
370 NAME=`basename "$i"` 371 NAME=`basename "$i"`
@@ -391,3 +392,4 @@ echo dist_man5_MANS = >> man/Makefile.am
391 done 392 done
392) 393)
393add_man_links . man/Makefile.am 394add_man_links . man/Makefile.am
395echo endif >> man/Makefile.am