1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
Description: Increase debug output when builds fail
Forwarded: not-needed
Origin: vendor
Author: Don Armstrong <don@debian.org>
--- a/scripts/build/run-and-check.sh
+++ b/scripts/build/run-and-check.sh
@@ -7,7 +7,8 @@
RetVal=$? # captures the return value of the command
if [ $RetVal -ne 0 ]; then
echo
- echo "Please check the logfile" $2 "for errors"
+ echo "Please check the logfile" $2 "for errors:"
+ cat $2
echo
fi
exit $RetVal
--- a/scm/ps-to-png.scm
+++ b/scm/ps-to-png.scm
@@ -141,6 +141,7 @@
*unspecified*
(ly:format "-dDEVICEHEIGHTPOINTS=~$" page-height))
"-dGraphicsAlphaBits=4"
+ "-q"
"-dTextAlphaBits=4"
"-dNOPAUSE"
"-dBATCH"
|