guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/02: gnu: libxml2: Wrap search path specification in a list.


From: Ludovic Courtès
Subject: 01/02: gnu: libxml2: Wrap search path specification in a list.
Date: Sat, 03 Jan 2015 18:46:26 +0000

civodul pushed a commit to branch core-updates
in repository guix.

commit 7452806931216a5ec8712dd39327540a3307a6ce
Author: Ludovic Courtès <address@hidden>
Date:   Sat Jan 3 18:48:16 2015 +0100

    gnu: libxml2: Wrap search path specification in a list.
    
    Reported by Mark H Weaver.
    
    * gnu/packages/xml.scm (libxml2)[native-search-paths]: Wrap into a list.
---
 gnu/packages/xml.scm |   14 +++++++-------
 1 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm
index 62f8c3c..b4b9140 100644
--- a/gnu/packages/xml.scm
+++ b/gnu/packages/xml.scm
@@ -1,5 +1,5 @@
 ;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2013, 2014 Ludovic Courtès <address@hidden>
+;;; Copyright © 2013, 2014, 2015 Ludovic Courtès <address@hidden>
 ;;; Copyright © 2013 Andreas Enge <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
@@ -72,12 +72,12 @@ things the parser might find in the XML document (like 
start tags).")
 
     ;; $XML_CATALOG_FILES lists 'catalog.xml' files found in under the 'xml'
     ;; sub-directory of any given package.
-    (native-search-paths (search-path-specification
-                          (variable "XML_CATALOG_FILES")
-                          (separator " ")
-                          (files '("xml"))
-                          (file-pattern "^catalog\\.xml$")
-                          (file-type 'regular)))
+    (native-search-paths (list (search-path-specification
+                                (variable "XML_CATALOG_FILES")
+                                (separator " ")
+                                (files '("xml"))
+                                (file-pattern "^catalog\\.xml$")
+                                (file-type 'regular))))
     (search-paths native-search-paths)
 
     (arguments



reply via email to

[Prev in Thread] Current Thread [Next in Thread]