diff options
author | jasper <> | 2011-05-03 17:28:25 +0000 |
---|---|---|
committer | jasper <> | 2011-05-03 17:28:25 +0000 |
commit | 8153c96e134ad79b74adeb4f92f16ced96b28c78 (patch) | |
tree | 90871962f311ab5d2110dd24d0ea4838a3dbd9af | |
parent | 53f2cc7dd4fcd28a971a5d0bc9784393cf17d561 (diff) | |
download | openbsd-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.sh | 8 |
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 | |||
54 | Description: OpenSSL cryptography library | 54 | Description: OpenSSL cryptography library |
55 | Version: ${ssl_version} | 55 | Version: ${ssl_version} |
56 | Requires: | 56 | Requires: |
57 | Libs: -lcrypto | 57 | Libs: -L\${libdir} -lcrypto |
58 | Cflags: -I\${includedir} | 58 | Cflags: -I\${includedir} |
59 | __EOF__ | 59 | __EOF__ |
60 | 60 | ||
@@ -70,7 +70,7 @@ Name: OpenSSL | |||
70 | Description: Secure Sockets Layer and cryptography libraries | 70 | Description: Secure Sockets Layer and cryptography libraries |
71 | Version: ${ssl_version} | 71 | Version: ${ssl_version} |
72 | Requires: | 72 | Requires: |
73 | Libs: -lssl -lcrypto | 73 | Libs: -L\${libdir} -lssl -lcrypto |
74 | Cflags: -I\${includedir} | 74 | Cflags: -I\${includedir} |
75 | __EOF__ | 75 | __EOF__ |
76 | 76 | ||
@@ -86,6 +86,6 @@ Name: OpenSSL | |||
86 | Description: Secure Sockets Layer and cryptography libraries and tools | 86 | Description: Secure Sockets Layer and cryptography libraries and tools |
87 | Version: ${ssl_version} | 87 | Version: ${ssl_version} |
88 | Requires: | 88 | Requires: |
89 | Libs: -lssl -lcrypto | 89 | Libs: -L\${libdir} -lssl -lcrypto |
90 | Cflags: -I\${includedir} | 90 | Cflags: -I\${includedir} |
91 | __EOF__ | 91 | __EOF__ |