Marius Bakke writes: > This fixes . > > * gnu/packages/qt.scm (qtbase)[arguments]: Add phase 'patch-prl-files'. [...] > + (add-after 'patch-mkspecs 'patch-prl-files > + (lambda* (#:key outputs #:allow-other-keys) > + (let ((out (assoc-ref outputs "out"))) > + ;; Insert absolute references to the qtbase libraries because > + ;; QT_INSTALL_LIBS does not always resolve correctly, depending > + ;; on context. See > + (substitute* (find-files (string-append out "/lib") "\\.prl$") > + (("\\$\\$\\[QT_INSTALL_LIBS\\]") > + (string-append out "/lib"))) > + #t))) I pushed this hunk in a59e2dd8cd16655e379abb567baf978c94f3d48e, as I'm fairly confident that this is the right thing to do. Feedback still welcome however. :-)