diff options
| author | Gordon Sim <gsim@apache.org> | 2010-03-10 11:48:20 +0000 |
|---|---|---|
| committer | Gordon Sim <gsim@apache.org> | 2010-03-10 11:48:20 +0000 |
| commit | 1ed642bc5fc90709604e2f5f12b3358e7070dbb5 (patch) | |
| tree | 710da4bf190413d7c81b0b588cf0485201f21f97 /qpid/cpp/examples/verify_all | |
| parent | 1039dcfcca3c7060be937c23c1c2199f62fc334e (diff) | |
| download | qpid-python-1ed642bc5fc90709604e2f5f12b3358e7070dbb5.tar.gz | |
QPID-2441: patch from Jan Sarenik that prevents verification failures when running the examples if locale is not as expected
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@921319 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/examples/verify_all')
| -rwxr-xr-x | qpid/cpp/examples/verify_all | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/examples/verify_all b/qpid/cpp/examples/verify_all index baffd422ad..9d71c7498a 100755 --- a/qpid/cpp/examples/verify_all +++ b/qpid/cpp/examples/verify_all @@ -48,7 +48,7 @@ if test -z "$exclude_regexp"; then run_examples=$all_examples else for f in $all_examples; do - { cat $f | grep $exclude_regexp > /dev/null ; } || run_examples="$run_examples $f" + { echo $f | grep $exclude_regexp > /dev/null ; } || run_examples="$run_examples $f" done fi $verify $topsrcdir $topbuilddir $run_examples |
