diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-06-24 22:14:06 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-06-26 02:17:02 +0200 |
commit | d64b79fa9801d4db6dbfc6aefcb5d773309f72f1 (patch) | |
tree | 56a1708dcb91685b07888207e748d98b917e1ed8 /gnu/packages/gps.scm | |
parent | 188b88e2449da0f96aa3796068d376527526160d (diff) | |
download | gnu-guix-d64b79fa9801d4db6dbfc6aefcb5d773309f72f1.tar gnu-guix-d64b79fa9801d4db6dbfc6aefcb5d773309f72f1.tar.gz |
gnu: gpxsee: Use INVOKE.
* gnu/packages/gps.scm (gpxsee)[arguments]: Substitute INVOKE for
SYSTEM*.
Diffstat (limited to 'gnu/packages/gps.scm')
-rw-r--r-- | gnu/packages/gps.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/gps.scm b/gnu/packages/gps.scm index e913c25904..0555d831e3 100644 --- a/gnu/packages/gps.scm +++ b/gnu/packages/gps.scm @@ -193,7 +193,7 @@ coordinates as well as partial support for adjustments in global coordinate syst ;; Use lrelease to convert TS translation files into QM files. (lambda* (#:key inputs outputs #:allow-other-keys) (for-each (lambda (file) - (system* "lrelease" file)) + (invoke "lrelease" file)) (find-files "lang" "\\.ts")) (substitute* "src/config.h" (("/usr/share/gpxsee") |