gnu-build-system: Fix "libdir" and "includedir" for multiple-output drvs.
* guix/build/gnu-build-system.scm (configure): Change `--libdir' and `--includedir' to LIBDIR + "/lib" and INCLUDEDIR + "/include", respectively.
This commit is contained in:
		
							parent
							
								
									e36a717216
								
							
						
					
					
						commit
						08005c6579
					
				
					 1 changed files with 3 additions and 2 deletions
				
			
		|  | @ -64,10 +64,11 @@ | |||
|                   "--enable-fast-install" | ||||
|                   (string-append "--prefix=" prefix) | ||||
|                   `(,@(if libdir | ||||
|                           (list (string-append "--libdir=" libdir)) | ||||
|                           (list (string-append "--libdir=" libdir "/lib")) | ||||
|                           '()) | ||||
|                     ,@(if includedir | ||||
|                           (list (string-append "--includedir=" includedir)) | ||||
|                           (list (string-append "--includedir=" | ||||
|                                                includedir "/include")) | ||||
|                           '()) | ||||
|                     ,@configure-flags))))) | ||||
| 
 | ||||
|  |  | |||
		Reference in a new issue