Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/crypto/external/bsd/openssl/lib Explicitly run openssl's "ge...
details: https://anonhg.NetBSD.org/src/rev/1c83cfc7d17e
branches: trunk
changeset: 376029:1c83cfc7d17e
user: hgutch <hgutch%NetBSD.org@localhost>
date: Sat May 27 20:51:22 2023 +0000
description:
Explicitly run openssl's "gen" script in a shell
The script has permissions 755 in the repo but ends up with permissions
644 in the source sets, therefore we cannot invoke it simply as
path/to/gen .
diffstat:
crypto/external/bsd/openssl/lib/libcrypto/Makefile | 4 ++--
crypto/external/bsd/openssl/lib/libssl/Makefile | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diffs (36 lines):
diff -r e37463c5c82f -r 1c83cfc7d17e crypto/external/bsd/openssl/lib/libcrypto/Makefile
--- a/crypto/external/bsd/openssl/lib/libcrypto/Makefile Sat May 27 17:58:58 2023 +0000
+++ b/crypto/external/bsd/openssl/lib/libcrypto/Makefile Sat May 27 20:51:22 2023 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.32 2023/05/25 19:12:06 riastradh Exp $
+# $NetBSD: Makefile,v 1.33 2023/05/27 20:51:22 hgutch Exp $
# RCSid:
# Id: Makefile,v 1.33 1998/11/11 11:53:53 sjg Exp
@@ -279,7 +279,7 @@ x509v3.h
.for i in ${GENH}
$i: $i.in
${_MKTARGET_CREATE}
- ${.CURDIR}/gen ${.ALLSRC} > ${.TARGET}
+ ${HOST_SH} ${.CURDIR}/gen ${.ALLSRC} > ${.TARGET}
.endfor
.include <bsd.lib.mk>
diff -r e37463c5c82f -r 1c83cfc7d17e crypto/external/bsd/openssl/lib/libssl/Makefile
--- a/crypto/external/bsd/openssl/lib/libssl/Makefile Sat May 27 17:58:58 2023 +0000
+++ b/crypto/external/bsd/openssl/lib/libssl/Makefile Sat May 27 20:51:22 2023 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.17 2023/05/25 19:12:06 riastradh Exp $
+# $NetBSD: Makefile,v 1.18 2023/05/27 20:51:22 hgutch Exp $
# RCSid:
# Id: Makefile,v 1.33 1998/11/11 11:53:53 sjg Exp
@@ -58,7 +58,7 @@ ssl.h
.for i in ${GENH}
$i: $i.in
${_MKTARGET_CREATE}
- ${.CURDIR}/../libcrypto/gen ${.ALLSRC} > ${.TARGET}
+ ${HOST_SH} ${.CURDIR}/../libcrypto/gen ${.ALLSRC} > ${.TARGET}
.endfor
.include <bsd.lib.mk>
Home |
Main Index |
Thread Index |
Old Index