GNU bug report logs -
#54539
[PATCH 0/6] Start breaking up import cycles
Previous Next
Reported by: Maxime Devos <maximedevos <at> telenet.be>
Date: Wed, 23 Mar 2022 18:48:01 UTC
Severity: normal
Tags: patch
Done: Andreas Enge <andreas <at> enge.fr>
Bug is archived. No further changes may be made.
Full log
Message #167 received at 54539 <at> debbugs.gnu.org (full text, mbox):
See first commit in the series for the procedure.
---
gnu/packages/elf.scm | 19 +++++++++----------
1 file changed, 9 insertions(+), 10 deletions(-)
diff --git a/gnu/packages/elf.scm b/gnu/packages/elf.scm
index 8cc2ff3637..46f2113624 100644
--- a/gnu/packages/elf.scm
+++ b/gnu/packages/elf.scm
@@ -33,16 +33,15 @@ (define-module (gnu packages elf)
#:use-module (guix build-system gnu)
#:use-module ((guix licenses) #:select (gpl3+ lgpl3+ lgpl2.0+))
#:use-module (gnu packages)
- #:use-module (gnu packages autotools)
- #:use-module (gnu packages compression)
- #:use-module (gnu packages documentation)
- #:use-module (gnu packages gcc)
- #:use-module (gnu packages m4)
- #:use-module (gnu packages pkg-config)
- #:use-module (gnu packages python)
- #:use-module (gnu packages sphinx)
- #:use-module (gnu packages texinfo)
- #:use-module (gnu packages xml)
+ #:use-module (gnu packages autotools) ; required by "guix build -d guix"
+ #:autoload (gnu packages compression) (zlib)
+ #:autoload (gnu packages gcc) (gcc)
+ #:autoload (gnu packages m4) (m4)
+ #:autoload (gnu packages pkg-config) (pkg-config)
+ #:autoload (gnu packages python) (python)
+ #:autoload (gnu packages sphinx) (python-sphinx)
+ #:autoload (gnu packages texinfo) (texinfo)
+ #:autoload (gnu packages xml) (libxml2)
#:use-module (srfi srfi-1)
#:use-module (srfi srfi-26))
--
2.37.2
This bug report was last modified 22 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.