[arch-commits] Commit in openssl/trunk (PKGBUILD)
Jelle van der Waa
jelle at archlinux.org
Sun May 24 19:30:57 UTC 2020
Date: Sunday, May 24, 2020 @ 19:30:56
Author: jelle
Revision: 387506
Fix CA.pl not being re-generated in check()
Thanks to reproducible builds a bug was uncovered when building without check()
which showed a difference in "/etc/ssl/misc/CA.pl" as check() reverses the patch
and runs make check which re-generates CA.pl without our change.
Modified:
openssl/trunk/PKGBUILD
----------+
PKGBUILD | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
Modified: PKGBUILD
===================================================================
--- PKGBUILD 2020-05-24 18:18:39 UTC (rev 387505)
+++ PKGBUILD 2020-05-24 19:30:56 UTC (rev 387506)
@@ -4,7 +4,7 @@
_ver=1.1.1g
# use a pacman compatible version scheme
pkgver=${_ver/[a-z]/.${_ver//[0-9.]/}}
-pkgrel=1
+pkgrel=2
pkgdesc='The Open Source toolkit for Secure Sockets Layer and Transport Layer Security'
arch=('x86_64')
url='https://www.openssl.org'
@@ -46,6 +46,8 @@
patch -p0 -R -i "$srcdir/ca-dir.patch"
make test
patch -p0 -i "$srcdir/ca-dir.patch"
+ # re-run make to re-generate CA.pl from th patched .in file.
+ make apps/CA.pl
}
package() {
More information about the arch-commits
mailing list