diff options
author | Ludovic Courtès <ludo@gnu.org> | 2015-03-04 17:04:35 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-03-04 17:23:27 +0100 |
commit | 6d0b9d03ced244093c026b3433ec06643d78236c (patch) | |
tree | feda4f852f446f47307285db5305917c3a752980 /tests/packages.scm | |
parent | 0e309f1e5bc78dfc1366f40e4071b2fd0979178f (diff) | |
download | guix-6d0b9d03ced244093c026b3433ec06643d78236c.tar guix-6d0b9d03ced244093c026b3433ec06643d78236c.tar.gz |
tests: Remove dependency on 'glibc-utf8-locales' for profile tests.
This fixes a regression introduced in commit 536c3ee.
* guix/profiles.scm (ca-certificate-bundle): When MANIFEST is empty,
make a trivial derivation.
* guix/scripts/package.scm (guix-package)[process-actions]: Pass
#:ca-certificate-bundle? to 'profile-generation'.
* tests/packages.scm ("--search-paths with pattern"): Likewise.
* tests/profiles.scm ("profile-derivation"): Likewise.
Diffstat (limited to 'tests/packages.scm')
-rw-r--r-- | tests/packages.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/packages.scm b/tests/packages.scm index d6371b3b49..c9dd5d859a 100644 --- a/tests/packages.scm +++ b/tests/packages.scm @@ -599,7 +599,8 @@ (profile-derivation (manifest (map package->manifest-entry (list p1 p2))) - #:info-dir? #f) + #:info-dir? #f + #:ca-certificate-bundle? #f) #:guile-for-build (%guile-for-build)))) (build-derivations %store (list prof)) (string-match (format #f "^export XML_CATALOG_FILES=\"~a/xml/+bar/baz/catalog\\.xml\"\n" |