diff options
Diffstat (limited to 'gnu/packages/texlive.scm')
-rw-r--r-- | gnu/packages/texlive.scm | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/gnu/packages/texlive.scm b/gnu/packages/texlive.scm index 92582a7ef0..c2d5850f79 100644 --- a/gnu/packages/texlive.scm +++ b/gnu/packages/texlive.scm @@ -116,12 +116,10 @@ "--with-system-zziplib") #:phases (alist-replace - 'configure - (lambda* (#:key outputs #:allow-other-keys #:rest args) - (let ((configure (assoc-ref %standard-phases 'configure))) - (substitute* "utils/psutils/Makefile.in" - (("/usr/bin/env perl") (which "perl"))) - (apply configure args))) + 'configure 'patch-perl-shebang + (lambda _ + (substitute* "utils/psutils/Makefile.in" + (("/usr/bin/env perl") (which "perl")))) (alist-cons-after 'install 'postinst (lambda* (#:key inputs outputs #:allow-other-keys #:rest args) |