* Work around a bad Perl interpreter path.

svn path=/nixpkgs/trunk/; revision=8553
This commit is contained in:
Eelco Dolstra 2007-04-09 23:29:00 +00:00
parent 277378c2a4
commit 473997f01c
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ dot2pdf() {
targetName=$out/$(basename $(stripHash $sourceFile; echo $strippedName) .dot).pdf
echo "converting $sourceFile to $targetName..."
dot -Tps $sourceFile > tmp.ps
epstopdf --outfile $targetName tmp.ps
perl $(type -tp epstopdf) --outfile $targetName tmp.ps
}
for i in $dotGraph; do