diff options
author | Gordon Sim <gsim@apache.org> | 2008-06-26 08:42:39 +0000 |
---|---|---|
committer | Gordon Sim <gsim@apache.org> | 2008-06-26 08:42:39 +0000 |
commit | 83b8d7aac997d6f2dc50b5b4f05429d575da985e (patch) | |
tree | 0a5edee960f6d088e46b73df5a2766fdc2a4b2ab /cpp/src | |
parent | 4d560b89fa09056c22cd42e212c9ce8addeecb5a (diff) | |
download | qpid-python-83b8d7aac997d6f2dc50b5b4f05429d575da985e.tar.gz |
QPID-1147: Avoid usage of 'source' builtin in pure sh scripts
Patch from Manuel Teira that replaces "source" builtin with a dot inclusion on run_test script
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@671824 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src')
-rwxr-xr-x | cpp/src/tests/run_test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/tests/run_test b/cpp/src/tests/run_test index c535c8caaa..06e919c394 100755 --- a/cpp/src/tests/run_test +++ b/cpp/src/tests/run_test @@ -13,7 +13,7 @@ # srcdir=`dirname $0` -source $srcdir/vg_check +. $srcdir/vg_check # Export variables from makefile. export VALGRIND srcdir |