diff options
author | Marius Bakke <mbakke@fastmail.com> | 2020-01-07 14:28:53 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2020-01-07 18:18:12 +0100 |
commit | 1ecadbfe601de5d853bfe5be17154a8bc1df6cf8 (patch) | |
tree | e1ad52a8c44cfcc080ac7c61fe58ef089396df10 | |
parent | 517c55381e190b2d6bdba95c45a6c895831b9721 (diff) | |
download | patches-1ecadbfe601de5d853bfe5be17154a8bc1df6cf8.tar patches-1ecadbfe601de5d853bfe5be17154a8bc1df6cf8.tar.gz |
gnu: libgeotiff: Do not build static library.
* gnu/packages/geo.scm (libgeotiff)[arguments]: Add "--disable-static" in
#:configure-flags.
-rw-r--r-- | gnu/packages/geo.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm index df65c75154..32cdc2b53a 100644 --- a/gnu/packages/geo.scm +++ b/gnu/packages/geo.scm @@ -259,8 +259,8 @@ and driving.") ("proj" ,proj))) (arguments `(#:configure-flags - (list (string-append "--with-zlib") - (string-append "--with-jpeg") + (list "--disable-static" + "--with-zlib" "--with-jpeg" (string-append "--with-libtiff=" (assoc-ref %build-inputs "libtiff"))))) (synopsis "Library for handling GeoTIFF (geographic enabled TIFF)") (description "libgeotiff is a library on top of libtiff for reading and |