diff options
author | Mark H Weaver <mhw@netris.org> | 2014-04-03 01:32:09 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2014-04-03 01:40:33 -0400 |
commit | 67880c8e2bdd6d9d3a9a9dc3fe242d115f711ce9 (patch) | |
tree | 4ed64f50fdfd15844c42acc654a680db2087cc80 /gnu/packages | |
parent | a53a9aed9352b8d8f711dc9630337be7ef88764a (diff) | |
download | guix-67880c8e2bdd6d9d3a9a9dc3fe242d115f711ce9.tar guix-67880c8e2bdd6d9d3a9a9dc3fe242d115f711ce9.tar.gz |
gnu: texlive: Fix bug recently introduced in d4bf49b.
Fixes bug introduced in d4bf49b140bd5cfb3580d2a038679160dc1331b5.
* gnu/packages/texlive.scm (texlive): Change 'alist-replace' to
'alist-cons-before'.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/texlive.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/texlive.scm b/gnu/packages/texlive.scm index c2d5850f79..fc65a4bb33 100644 --- a/gnu/packages/texlive.scm +++ b/gnu/packages/texlive.scm @@ -115,7 +115,7 @@ "--with-system-zlib" "--with-system-zziplib") #:phases - (alist-replace + (alist-cons-before 'configure 'patch-perl-shebang (lambda _ (substitute* "utils/psutils/Makefile.in" |