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 | 2312ac871432b83b928be9f7403854ca7ef3af7a (patch) | |
| tree | 58f3ff546ab481134feed365e8b977b59d7d5587 /cpp/examples/verify_all | |
| parent | 822b3c8d4f3ccea6b24cfbd50a78f5bd703f4fdd (diff) | |
| download | qpid-python-2312ac871432b83b928be9f7403854ca7ef3af7a.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/qpid@921319 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/examples/verify_all')
| -rwxr-xr-x | cpp/examples/verify_all | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/examples/verify_all b/cpp/examples/verify_all index baffd422ad..9d71c7498a 100755 --- a/cpp/examples/verify_all +++ b/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 |
