diff options
author | Ludovic Courtès <ludo@gnu.org> | 2023-04-06 11:44:06 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2023-04-06 11:45:30 +0200 |
commit | 01d9859821c5df6cc76c59e48fddd3c8cfa88ff0 (patch) | |
tree | 7dbdfbd63442f15fe2831cabbcc72dfd4f199c72 /guix/build-system | |
parent | e8aeab85d387ca3e577519ca31288025383e94d9 (diff) |
build-system/gnu: Add missing module import.
This import was removed in ae587c2ef041413bc709a555261db752068ea360 on
'master'; it was inappropriate on 'core-updates'.
Reported by Christopher Baines.
* guix/build-system/dune.scm: Import (guix build-system gnu).
Diffstat (limited to 'guix/build-system')
-rw-r--r-- | guix/build-system/dune.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/guix/build-system/dune.scm b/guix/build-system/dune.scm index 3ce930c6d7..c45f308349 100644 --- a/guix/build-system/dune.scm +++ b/guix/build-system/dune.scm @@ -25,6 +25,7 @@ #:use-module (guix gexp) #:use-module (guix search-paths) #:use-module (guix build-system) + #:use-module ((guix build-system gnu) #:prefix gnu:) #:use-module ((guix build-system ocaml) #:prefix ocaml:) #:use-module (guix packages) #:use-module (srfi srfi-1) |