diff options
author | Ludovic Courtès <ludo@gnu.org> | 2013-04-16 14:05:00 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2013-04-16 14:05:00 +0200 |
commit | 35ac56b63e438aaefde9364db7164dd213677022 (patch) | |
tree | a3e3fdf6abdff1740a4801b987a2c212c928469c /guix/build-system/perl.scm | |
parent | 50efa797742af747f8d544a4fac52116993d9da8 (diff) | |
download | gnu-guix-35ac56b63e438aaefde9364db7164dd213677022.tar gnu-guix-35ac56b63e438aaefde9364db7164dd213677022.tar.gz |
build-system/{perl,cmake}: Keep the standard search paths of gnu-build-system.
Reported by Andreas Enge <andreas@enge.fr>.
* guix/build-system/gnu.scm (standard-search-paths): New procedure.
(gnu-build): Use it.
* guix/build-system/perl.scm (perl-build):
Append (standard-search-paths) to the search paths of PERL.
* guix/build-system/cmake.scm (cmake-build):
Append (standard-search-paths) to SEARCH-PATHS.
Diffstat (limited to 'guix/build-system/perl.scm')
-rw-r--r-- | guix/build-system/perl.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/guix/build-system/perl.scm b/guix/build-system/perl.scm index c97698e225..1ff9fd2674 100644 --- a/guix/build-system/perl.scm +++ b/guix/build-system/perl.scm @@ -55,7 +55,8 @@ "Build SOURCE using PERL, and with INPUTS. This assumes that SOURCE provides a `Makefile.PL' file as its build system." (define perl-search-paths - (package-native-search-paths perl)) + (append (package-native-search-paths perl) + (standard-search-paths))) (define builder `(begin |