guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#29493] Fix


From: Ben Sturmfels
Subject: [bug#29493] Fix
Date: Wed, 29 Nov 2017 10:02:56 +1100
User-agent: mu4e 0.9.18; emacs 25.3.1

Hi Folks,

The command `guix build synergy` currently fails with:

    $ guix build synergy
    ...
    phase `build' succeeded after 123.5 seconds
    starting phase `check'
    phase `check' failed after 0.0 seconds
    builder for `/gnu/store/xwj5qbqkn4ybiiwskypfgglqyvkl539s-synergy-1.8.8.drv' 
failed with exit code 1
    @ build-failed 
/gnu/store/xwj5qbqkn4ybiiwskypfgglqyvkl539s-synergy-1.8.8.drv - 1 builder for 
`/gnu/store/xwj5qbqkn4ybiiwskypfgglqyvkl539s-synergy-1.8.8.drv' failed with 
exit code 1
    guix build: error: build failed: build of 
`/gnu/store/xwj5qbqkn4ybiiwskypfgglqyvkl539s-synergy-1.8.8.drv' failed

It appears that the package now builds into the
"synergy-core-1.8.8-stable" directory instead of "synergy-1.8.8-stable".
Sadly it sounds like the renaming is to make way for "Synergy" to be
used as the name of the proprietary release.

Build completes successfully with the attached patch.

Regards,
Ben

--
Ben Sturmfels

Sturm Software Engineering
www.sturm.com.au
(03) 9024 2467
>From e2754965f87be2e170bbc7011125d43513431559 Mon Sep 17 00:00:00 2001
From: Ben Sturmfels <address@hidden>
Date: Wed, 29 Nov 2017 09:28:43 +1100
Subject: [PATCH] gnu: synergy: Fix install test/install error.

* gnu/packages/synergy.scm (synergy): Now builds to "synergy-core" directory.
---
 gnu/packages/synergy.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnu/packages/synergy.scm b/gnu/packages/synergy.scm
index 8e863149c..ec1872cc0 100644
--- a/gnu/packages/synergy.scm
+++ b/gnu/packages/synergy.scm
@@ -68,7 +68,7 @@
        ("xinput"  ,xinput)))
     (arguments
      `(#:phases
-       (let ((srcdir (string-append "../synergy-" ,version "-stable")))
+       (let ((srcdir (string-append "../synergy-core-" ,version "-stable")))
          (modify-phases %standard-phases
            (add-before 'configure 'unpack-aux-src
              ;; TODO: package and use from system
-- 
2.15.0


reply via email to

[Prev in Thread] Current Thread [Next in Thread]