guix-patches
[Top][All Lists]
Advanced

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

[bug#55421] [PATCH 1/1] gnu: Add emacs-bfuture.


From: Maxime Devos
Subject: [bug#55421] [PATCH 1/1] gnu: Add emacs-bfuture.
Date: Sun, 15 May 2022 21:38:54 +0200
User-agent: Evolution 3.38.3-1

Fredrik Salomonsson schreef op zo 15-05-2022 om 19:05 [+0000]:
> ERROR: In procedure %resolve-variable:
> Unbound variable: gexp

Make sure it's

   (arguments
     (list #:tests? (not (%current-target-system))
           #:test-command #~'("ert-runner")))

and not

   (arguments
     `(#:tests? (not (%current-target-system))
       #:test-command #~'("ert-runner"))) ; <-- won't work

. The latter won't work as-is as the #~ needs to be unquoted with
,#~'("ert-runner").  I recommend the first method ('list' instead of `
aka quasiquote) for having less complicated syntax.

If that wasn't the case or it still fails please send a copy of the
package definition.

Greetings,
Maxime.

Attachment: signature.asc
Description: This is a digitally signed message part


reply via email to

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