diff options
author | Ludovic Courtès <ludo@gnu.org> | 2012-06-27 23:58:07 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2012-06-27 23:58:07 +0200 |
commit | 208f7cd155abdf07ae4f858aeeb26892eb08df88 (patch) | |
tree | a6fc59bd1ae85e9f2929ee2079cc90539193e476 /Makefile.am | |
parent | 72d869634bd22d978af13f5a8c89ddff27140422 (diff) | |
download | patches-208f7cd155abdf07ae4f858aeeb26892eb08df88.tar patches-208f7cd155abdf07ae4f858aeeb26892eb08df88.tar.gz |
Abstract build systems.
* Makefile.am (MODULES): Add `guix/build-system.scm' and
`guix/build-system/gnu.scm'. Remove `guix/gnu-build-system.scm'.
* guix/build-system.scm: New file.
* guix/gnu-build-system.scm: Rename to...
* guix/build-system/gnu.scm: ... this.
(gnu-build-system): New variable.
* tests/builders.scm: Adjust `use-module' clauses.
("gnu-build-system"): New test.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 814bd3b355..d41e55a188 100644 --- a/Makefile.am +++ b/Makefile.am @@ -18,7 +18,8 @@ MODULES = \ guix/derivations.scm \ - guix/gnu-build-system.scm \ + guix/build-system.scm \ + guix/build-system/gnu.scm \ guix/http.scm \ guix/store.scm \ guix/utils.scm \ |