diff options
author | Leo Famulari <leo@famulari.name> | 2020-03-02 15:27:34 -0500 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2020-03-02 15:36:21 -0500 |
commit | 8e1f5aaba2a0c9eff520f4915d764cf83824929a (patch) | |
tree | f520727408f71a0b573245c2e9b1a094188c0eb4 /gnu/packages/syncthing.scm | |
parent | 7b1ba1e4fc36fd2b6454ed9d8b2d8d8d50ce0154 (diff) | |
download | patches-8e1f5aaba2a0c9eff520f4915d764cf83824929a.tar patches-8e1f5aaba2a0c9eff520f4915d764cf83824929a.tar.gz |
gnu: Syncthing: Fix installation of the 'util' package output.
* gnu/packages/syncthing.scm (syncthing)[arguments]: Adjust the 'install' phase.
Diffstat (limited to 'gnu/packages/syncthing.scm')
-rw-r--r-- | gnu/packages/syncthing.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/syncthing.scm b/gnu/packages/syncthing.scm index 2357b08f87..afa32e99b4 100644 --- a/gnu/packages/syncthing.scm +++ b/gnu/packages/syncthing.scm @@ -136,7 +136,7 @@ (utils (assoc-ref outputs "utils"))) (with-directory-excursion "src/github.com/syncthing/syncthing" (install-file "syncthing" (string-append out "/bin")) - (for-each (cut install-file <> utils) + (for-each (cut install-file <> (string-append utils "/bin/")) '("stcli" "stcompdirs" "stcrashreceiver" "stdisco" "stdiscosrv" "stevents" "stfileinfo" "stfinddevice" "stfindignored" "stgenfiles" |