mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
Corrected handling of latex errors.
svn path=/nixpkgs/trunk/; revision=9000
This commit is contained in:
parent
a268963eec
commit
6b2b602299
1 changed files with 3 additions and 1 deletions
|
@ -8,7 +8,9 @@ stdenv.mkDerivation {
|
|||
md5 = "12509b38f7a92bb22d565cc73cbd83c7";
|
||||
};
|
||||
|
||||
preBuild = "sed -e '/^PREFIX/d' -i Makefile ; sed -e 's@/bin/bash@/var/run/current-system/sw&@; s@/dev/stdin@/proc/self/fd/0@' -i pidgin-latex-convert.sh;";
|
||||
preBuild = "sed -e '/^PREFIX/d' -i Makefile ;
|
||||
sed -e 's@/bin/bash@/var/run/current-system/sw&@; s@/dev/stdin@/proc/self/fd/0@' -i pidgin-latex-convert.sh;
|
||||
sed -e 's@^latex.*@& ; if let \$?; then rm /tmp/pidgin-latex-tmp.png; exit 1; fi; @' -i pidgin-latex-convert.sh ; ";
|
||||
|
||||
makeFlags="PREFIX=\$(out)";
|
||||
|
||||
|
|
Loading…
Reference in a new issue