gnu: openssl: Build fix for the Hurd.
* gnu/packages/tls.scm (openssl-3.0)[arguments]: When building on the Hurd, add "hurd-x86" to #:configure-flags.
This commit is contained in:
		
							parent
							
								
									da9e4fd434
								
							
						
					
					
						commit
						378766dd2e
					
				
					 1 changed files with 6 additions and 1 deletions
				
			
		|  | @ -585,7 +585,12 @@ OpenSSL for TARGET." | |||
|               (lambda* (#:key native-inputs inputs #:allow-other-keys) | ||||
|                 (setenv "HASHBANGPERL" | ||||
|                         (search-input-file (or native-inputs inputs) | ||||
|                                            "/bin/perl")))))))) | ||||
|                                            "/bin/perl")))))) | ||||
|        ((#:configure-flags flags #~'()) | ||||
|         (if (system-hurd?) | ||||
|             #~(append #$flags '("hurd-x86")) ;must not be used when | ||||
|                                              ;cross-compiling! | ||||
|             flags)))) | ||||
|     (license license:asl2.0))) | ||||
| 
 | ||||
| (define-public openssl openssl-3.0) | ||||
|  |  | |||
		Reference in a new issue