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.
This commit is contained in:
		
							parent
							
								
									bf0baaf7db
								
							
						
					
					
						commit
						7452806931
					
				
					 1 changed files with 7 additions and 7 deletions
				
			
		| 
						 | 
					@ -1,5 +1,5 @@
 | 
				
			||||||
;;; GNU Guix --- Functional package management for GNU
 | 
					;;; GNU Guix --- Functional package management for GNU
 | 
				
			||||||
;;; Copyright © 2013, 2014 Ludovic Courtès <ludo@gnu.org>
 | 
					;;; Copyright © 2013, 2014, 2015 Ludovic Courtès <ludo@gnu.org>
 | 
				
			||||||
;;; Copyright © 2013 Andreas Enge <andreas@enge.fr>
 | 
					;;; Copyright © 2013 Andreas Enge <andreas@enge.fr>
 | 
				
			||||||
;;;
 | 
					;;;
 | 
				
			||||||
;;; This file is part of GNU Guix.
 | 
					;;; 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'
 | 
					    ;; $XML_CATALOG_FILES lists 'catalog.xml' files found in under the 'xml'
 | 
				
			||||||
    ;; sub-directory of any given package.
 | 
					    ;; sub-directory of any given package.
 | 
				
			||||||
    (native-search-paths (search-path-specification
 | 
					    (native-search-paths (list (search-path-specification
 | 
				
			||||||
                                (variable "XML_CATALOG_FILES")
 | 
					                                (variable "XML_CATALOG_FILES")
 | 
				
			||||||
                                (separator " ")
 | 
					                                (separator " ")
 | 
				
			||||||
                                (files '("xml"))
 | 
					                                (files '("xml"))
 | 
				
			||||||
                                (file-pattern "^catalog\\.xml$")
 | 
					                                (file-pattern "^catalog\\.xml$")
 | 
				
			||||||
                          (file-type 'regular)))
 | 
					                                (file-type 'regular))))
 | 
				
			||||||
    (search-paths native-search-paths)
 | 
					    (search-paths native-search-paths)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    (arguments
 | 
					    (arguments
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Reference in a new issue