home: Fix unbound variable. * home.scm: Fix an unbound variable that was resolved to a macro at build time.
home.scm
261 | 261 | (lambda (type) | |
262 | 262 | (let ((default (home-type-default-value type))) | |
263 | 263 | (if (eq? default &no-default-value) | |
264 | - | (missing-target-error home target-type) | |
264 | + | (missing-target-error #f target-type) | |
265 | 265 | (make-user-home type default)))) | |
266 | 266 | (uniq additions))) | |
267 | 267 |