You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by kg...@apache.org on 2014/01/30 23:44:24 UTC

svn commit: r1563007 - /qpid/proton/trunk/config.sh

Author: kgiusti
Date: Thu Jan 30 22:44:24 2014
New Revision: 1563007

URL: http://svn.apache.org/r1563007
Log:
PROTON-498: fix shell variable quoting again, as the CI system is apparently picky about this

Modified:
    qpid/proton/trunk/config.sh

Modified: qpid/proton/trunk/config.sh
URL: http://svn.apache.org/viewvc/qpid/proton/trunk/config.sh?rev=1563007&r1=1563006&r2=1563007&view=diff
==============================================================================
--- qpid/proton/trunk/config.sh (original)
+++ qpid/proton/trunk/config.sh Thu Jan 30 22:44:24 2014
@@ -74,7 +74,6 @@ fi
 export PATH="$PATH:$PROTON_HOME/tests/python"
 
 # can the test harness use valgrind?
-VALGRIND_EXECUTABLE="$(type -p valgrind)"
-if [[ -x $VALGRIND_EXECUTABLE ]] ; then
-    export VALGRIND=$VALGRIND_EXECUTABLE
+if [[ -x "$(type -p valgrind)" ]] ; then
+    export VALGRIND=$(type -p valgrind)
 fi



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org