From b1b1345574b1293f783b5767814da3cbb530463f Mon Sep 17 00:00:00 2001 From: Michael Pyne Date: Fri, 3 Aug 2012 20:04:54 -0400 Subject: [PATCH] Show exception message from filter_program_output. As opposed to dumping a Perl object straight to the terminal. --- kdesrc-build | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/kdesrc-build b/kdesrc-build index c137c77..6639923 100755 --- a/kdesrc-build +++ b/kdesrc-build @@ -3912,6 +3912,10 @@ EOF if($@) { + if (ref $@ && $@->isa('BuildException')) { + $@ = $@->{message}; + } + error ("Unable to run r[b[svn], is the Subversion program installed?"); error (" -- Error was: r[$@]"); return undef;