diff options
| author | Ricardo Wurmus <rekado@elephly.net> | 2020-12-27 12:04:22 +0100 |
|---|---|---|
| committer | Ricardo Wurmus <rekado@elephly.net> | 2020-12-27 12:04:22 +0100 |
| commit | 649786f0cbd69083c7ae33ae1d441c19b68fc0ab (patch) | |
| tree | ad0924ac15966c66734dfb1024a12f0494d5831d | |
| parent | 63ebc380a8ae2997113a6df3b6f6d9ec706a289f (diff) | |
import/print: package->code: Fix branching.
* guix/import/print.scm (package->code)<license->code>: Branch on VAR, not on
the SYMBOL-APPEND return value.
| -rw-r--r-- | guix/import/print.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/guix/import/print.scm b/guix/import/print.scm index d21ce57aeb6..a2ab810a5c8 100644 --- a/guix/import/print.scm +++ b/guix/import/print.scm | |||
| @@ -57,7 +57,8 @@ when evaluated." | |||
| 57 | ;; Print either license variable name or the code for a license object | 57 | ;; Print either license variable name or the code for a license object |
| 58 | (define (license->code lic) | 58 | (define (license->code lic) |
| 59 | (let ((var (variable-name lic '(guix licenses)))) | 59 | (let ((var (variable-name lic '(guix licenses)))) |
| 60 | (or (symbol-append 'license: var) | 60 | (if var |
| 61 | (symbol-append 'license: var) | ||
| 61 | `(license | 62 | `(license |
| 62 | (name ,(license-name lic)) | 63 | (name ,(license-name lic)) |
| 63 | (uri ,(license-uri lic)) | 64 | (uri ,(license-uri lic)) |
