home: Fix unbound variable.

Julien LepillerFri Sep 20 18:15:20+0200 2019

10b9a40

home: Fix unbound variable. * home.scm: Fix an unbound variable that was resolved to a macro at build time.

home.scm

261261
        (lambda (type)
262262
          (let ((default (home-type-default-value type)))
263263
            (if (eq? default &no-default-value)
264-
                (missing-target-error home target-type)
264+
                (missing-target-error #f target-type)
265265
                (make-user-home type default))))
266266
        (uniq additions)))
267267