diff options
author | Ludovic Courtès <ludo@gnu.org> | 2013-10-28 22:54:27 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2013-10-29 00:08:44 +0100 |
commit | 758704102848fb930f4ebba5945784cd8a64668d (patch) | |
tree | d0da7b26c8fa3c7752659a823f745a0e0f1906b1 | |
parent | 3220c2f41ef9d9f1f6bc0cff3b0ae879908d045d (diff) |
build-system/{cmake,perl}: Don't use (guix build gnu-build-system).
Previously references to '%standard-phases' in builder-side code would
refer to the wrong one.
* guix/build-system/cmake.scm (cmake-build): Remove (guix build
gnu-build-system) from the default MODULES value.
* guix/build-system/perl.scm (perl-build): Likewise.
-rw-r--r-- | guix/build-system/cmake.scm | 1 | ||||
-rw-r--r-- | guix/build-system/perl.scm | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/guix/build-system/cmake.scm b/guix/build-system/cmake.scm index 9461b19a2e..38f11cb3c3 100644 --- a/guix/build-system/cmake.scm +++ b/guix/build-system/cmake.scm @@ -65,7 +65,6 @@ (guix build gnu-build-system) (guix build utils))) (modules '((guix build cmake-build-system) - (guix build gnu-build-system) (guix build utils)))) "Build SOURCE using CMAKE, and with INPUTS. This assumes that SOURCE provides a 'CMakeLists.txt' file as its build system." diff --git a/guix/build-system/perl.scm b/guix/build-system/perl.scm index eac8f53d3e..5dc50d97f3 100644 --- a/guix/build-system/perl.scm +++ b/guix/build-system/perl.scm @@ -57,7 +57,6 @@ (guix build gnu-build-system) (guix build utils))) (modules '((guix build perl-build-system) - (guix build gnu-build-system) (guix build utils)))) "Build SOURCE using PERL, and with INPUTS. This assumes that SOURCE provides a `Makefile.PL' file as its build system." |