diff options
author | 2011-05-03 17:28:25 +0000 | |
---|---|---|
committer | 2011-05-03 17:28:25 +0000 | |
commit | d2092ee65986da4ad5fcd592f82eb0dd147d3603 (patch) | |
tree | 6682045c4fa3a9dc900c8e30396052ab73499176 | |
parent | Move SLIST initializations earlier so that failure handling paths can (diff) | |
download | wireguard-openbsd-d2092ee65986da4ad5fcd592f82eb0dd147d3603.tar.xz wireguard-openbsd-d2092ee65986da4ad5fcd592f82eb0dd147d3603.zip |
Adjust to explicitly list ${libdir}.
ok sthen@
-rw-r--r-- | lib/libssl/generate_pkgconfig.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libssl/generate_pkgconfig.sh b/lib/libssl/generate_pkgconfig.sh index bec8400108c..434ab6cdc3a 100644 --- a/lib/libssl/generate_pkgconfig.sh +++ b/lib/libssl/generate_pkgconfig.sh @@ -1,6 +1,6 @@ #!/bin/sh # -# $OpenBSD: generate_pkgconfig.sh,v 1.5 2011/03/24 21:31:01 matthieu Exp $ +# $OpenBSD: generate_pkgconfig.sh,v 1.6 2011/05/03 17:28:25 jasper Exp $ # # Generate pkg-config files for OpenSSL. @@ -54,7 +54,7 @@ Name: OpenSSL-libcrypto Description: OpenSSL cryptography library Version: ${ssl_version} Requires: -Libs: -lcrypto +Libs: -L\${libdir} -lcrypto Cflags: -I\${includedir} __EOF__ @@ -70,7 +70,7 @@ Name: OpenSSL Description: Secure Sockets Layer and cryptography libraries Version: ${ssl_version} Requires: -Libs: -lssl -lcrypto +Libs: -L\${libdir} -lssl -lcrypto Cflags: -I\${includedir} __EOF__ @@ -86,6 +86,6 @@ Name: OpenSSL Description: Secure Sockets Layer and cryptography libraries and tools Version: ${ssl_version} Requires: -Libs: -lssl -lcrypto +Libs: -L\${libdir} -lssl -lcrypto Cflags: -I\${includedir} __EOF__ |