~ruther/guix-local

a974a0be5b6b8763b54ea23d4dea508898a82b21 — Ludovic Courtès 13 years ago f9975b5
distro: openssl: Build shared libraries.

* distro/packages/openssl.scm (openssl): `configure' phase: pass
  "shared --libdir=lib".
1 files changed, 4 insertions(+), 1 deletions(-)

M distro/packages/openssl.scm
M distro/packages/openssl.scm => distro/packages/openssl.scm +4 -1
@@ 47,7 47,10 @@
         (lambda* (#:key outputs #:allow-other-keys)
           (let ((out (assoc-ref outputs "out")))
             (zero?
              (system* "./config" (string-append "--prefix=" out)))))
              (system* "./config"
                       "shared"                 ; build shared libraries
                       "--libdir=lib"
                       (string-append "--prefix=" out)))))
         (alist-cons-before
          'patch-source-shebangs 'patch-tests
          (lambda* (#:key inputs #:allow-other-keys)