diff options
author | Björn Höfling <bjoern.hoefling@bjoernhoefling.de> | 2020-05-14 14:07:53 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-05-17 15:16:56 +0200 |
commit | aaf94e71484d3dd47d330a25c15ccc78788928b6 (patch) | |
tree | 727c6fb32b3e4e8065192bb6eddfb0c79f526dbc /gnu | |
parent | e387ec8230f78c15450407d7f77c71e24aefdde4 (diff) |
gnu: java-jmapviewer: Return #t from all phases.
* gnu/packages/geo.scm (java-jmapviewer)[arguments]: Return #t from install
phase.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/geo.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm index 3c76b01c63..dc40974381 100644 --- a/gnu/packages/geo.scm +++ b/gnu/packages/geo.scm @@ -1151,7 +1151,8 @@ persisted. (lambda* (#:key outputs #:allow-other-keys) (let ((dir (string-append (assoc-ref outputs "out") "/share/java/"))) (mkdir-p dir) - (copy-file "JMapViewer.jar" (string-append dir "JMapViewer.jar")))))))) + (copy-file "JMapViewer.jar" (string-append dir "JMapViewer.jar")) + #t)))))) (home-page "https://wiki.openstreetmap.org/wiki/JMapViewer") (synopsis "OSM map integration in Java") (description "JMapViewer is a Java component which easily |