build/jami-service: Fix range ends in account-fingerprint-rx.
This broke compilation of Guix with guile@3.0.2 with: In procedure make-regexp: Invalid range end The fix is to replace [0-9A-f] with [0-9A-Fa-f]. * gnu/build/jami-service.scm (account-fingerprint-rx): Correct regexp. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
This commit is contained in:
		
							parent
							
								
									7712154ccb
								
							
						
					
					
						commit
						a3bfe953d2
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
					@ -96,7 +96,7 @@ before each retry."
 | 
				
			||||||
                 (list key value)))
 | 
					                 (list key value)))
 | 
				
			||||||
              alist))
 | 
					              alist))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
(define account-fingerprint-rx (make-regexp "[0-9A-f]{40}"))
 | 
					(define account-fingerprint-rx (make-regexp "[0-9A-Fa-f]{40}"))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
(define (account-fingerprint? val)
 | 
					(define (account-fingerprint? val)
 | 
				
			||||||
  "A Jami account fingerprint is 40 characters long and only contains
 | 
					  "A Jami account fingerprint is 40 characters long and only contains
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Reference in a new issue