GNU bug report logs - #55415
emacs-minimal-28.1-builder: Unknown # object: "#<"

Previous Next

Package: guix;

Reported by: Fredrik Salomonsson <plattfot <at> posteo.net>

Date: Sat, 14 May 2022 18:56:02 UTC

Severity: normal

Done: Fredrik Salomonsson <plattfot <at> posteo.net>

Bug is archived. No further changes may be made.

Full log


View this message in rfc822 format

From: Maxime Devos <maximedevos <at> telenet.be>
To: Fredrik Salomonsson <plattfot <at> posteo.net>, 55415 <at> debbugs.gnu.org
Subject: bug#55415: emacs-minimal-28.1-builder: Unknown # object: "#<"
Date: Sat, 14 May 2022 23:21:38 +0200
[Message part 1 (text/plain, inline)]
> Re: bug#55415: emacs-minimal-28.1-builder: Unknown # object: "#<"

Unverified solution: replace this ...

    (arguments
     (substitute-keyword-arguments (package-arguments emacs)
       ((#:configure-flags flags ''())
        `(list "--with-gnutls=no" "--disable-build-details"))
       ((#:phases phases)
        `(modify-phases ,phases
           (delete 'restore-emacs-pdmp)
           (delete 'strip-double-wrap)))))

by

    (arguments
     (substitute-keyword-arguments (package-arguments emacs)
       ((#:configure-flags flags ''())
        #~(list "--with-gnutls=no" "--disable-build-details"))
       ((#:phases phases)
        #~(modify-phases #$phases
            (delete 'restore-emacs-pdmp)
            (delete 'strip-double-wrap)))))

in the package definition of 'emacs-minimal'.  The other package
variants of emacs would also needs this change.  The change to
#:configure-flags is probably unnecessary but I think it's nice for
consistency.

Greetings,
Maxime.
[signature.asc (application/pgp-signature, inline)]

This bug report was last modified 3 years and 92 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.