From d26bf5294860c0130166b51f0832ab1118198812 Mon Sep 17 00:00:00 2001 From: Roel Janssen Date: Wed, 19 Aug 2020 18:04:06 +0200 Subject: gnu: virtuoso-use: Remove static libraries. * gnu/packages/databases.scm (virtuoso-ose): Remove static libraries from the build output. --- gnu/packages/databases.scm | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) (limited to 'gnu/packages') diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index d3220c67d8..fe9978587c 100644 --- a/gnu/packages/databases.scm +++ b/gnu/packages/databases.scm @@ -2549,7 +2549,19 @@ implementation for Python.") ;; TODO: Removing the libsrc/zlib source directory breaks the build. ;; This indicates that the internal zlib code may still be used. #:configure-flags '("--without-internal-zlib" - "--with-readline"))) + "--with-readline" + "--enable-static=no") + #:phases + (modify-phases %standard-phases + ;; Even with "--enable-static=no", "libvirtuoso-t.a" is left in + ;; the build output. The following phase removes it. + (add-after 'install 'remove-static-libs + (lambda* (#:key outputs #:allow-other-keys) + (let ((lib (string-append (assoc-ref outputs "out") "/lib"))) + (for-each (lambda (file) + (delete-file (string-append lib "/" file))) + '("libvirtuoso-t.a" + "libvirtuoso-t.la")))))))) (inputs `(("openssl" ,openssl-1.0) ("net-tools" ,net-tools) -- cgit v1.2.3