summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjasper <>2011-05-03 17:28:25 +0000
committerjasper <>2011-05-03 17:28:25 +0000
commit8153c96e134ad79b74adeb4f92f16ced96b28c78 (patch)
tree90871962f311ab5d2110dd24d0ea4838a3dbd9af
parent53f2cc7dd4fcd28a971a5d0bc9784393cf17d561 (diff)
downloadopenbsd-8153c96e134ad79b74adeb4f92f16ced96b28c78.tar.gz
openbsd-8153c96e134ad79b74adeb4f92f16ced96b28c78.tar.bz2
openbsd-8153c96e134ad79b74adeb4f92f16ced96b28c78.zip
Adjust to explicitly list ${libdir}.
ok sthen@
-rw-r--r--src/lib/libssl/generate_pkgconfig.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/libssl/generate_pkgconfig.sh b/src/lib/libssl/generate_pkgconfig.sh
index bec8400108..434ab6cdc3 100644
--- a/src/lib/libssl/generate_pkgconfig.sh
+++ b/src/lib/libssl/generate_pkgconfig.sh
@@ -1,6 +1,6 @@
1#!/bin/sh 1#!/bin/sh
2# 2#
3# $OpenBSD: generate_pkgconfig.sh,v 1.5 2011/03/24 21:31:01 matthieu Exp $ 3# $OpenBSD: generate_pkgconfig.sh,v 1.6 2011/05/03 17:28:25 jasper Exp $
4# 4#
5# Generate pkg-config files for OpenSSL. 5# Generate pkg-config files for OpenSSL.
6 6
@@ -54,7 +54,7 @@ Name: OpenSSL-libcrypto
54Description: OpenSSL cryptography library 54Description: OpenSSL cryptography library
55Version: ${ssl_version} 55Version: ${ssl_version}
56Requires: 56Requires:
57Libs: -lcrypto 57Libs: -L\${libdir} -lcrypto
58Cflags: -I\${includedir} 58Cflags: -I\${includedir}
59__EOF__ 59__EOF__
60 60
@@ -70,7 +70,7 @@ Name: OpenSSL
70Description: Secure Sockets Layer and cryptography libraries 70Description: Secure Sockets Layer and cryptography libraries
71Version: ${ssl_version} 71Version: ${ssl_version}
72Requires: 72Requires:
73Libs: -lssl -lcrypto 73Libs: -L\${libdir} -lssl -lcrypto
74Cflags: -I\${includedir} 74Cflags: -I\${includedir}
75__EOF__ 75__EOF__
76 76
@@ -86,6 +86,6 @@ Name: OpenSSL
86Description: Secure Sockets Layer and cryptography libraries and tools 86Description: Secure Sockets Layer and cryptography libraries and tools
87Version: ${ssl_version} 87Version: ${ssl_version}
88Requires: 88Requires:
89Libs: -lssl -lcrypto 89Libs: -L\${libdir} -lssl -lcrypto
90Cflags: -I\${includedir} 90Cflags: -I\${includedir}
91__EOF__ 91__EOF__