]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Fix scripts to use /bin/true consistently.
authorFlorian Krohm <florian@eich-krohm.de>
Fri, 3 Jul 2015 20:07:08 +0000 (20:07 +0000)
committerFlorian Krohm <florian@eich-krohm.de>
Fri, 3 Jul 2015 20:07:08 +0000 (20:07 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@15392

tests/check_isa-2_06_cap
tests/check_isa-2_07_cap

index b8ec37f31a7fce3d7e9eb9c79522a1b12474f0ce..68401fc74b6e1d5b2d96c68dd7970cc5b49ca0f1 100755 (executable)
@@ -2,7 +2,7 @@
 
 # We use this script to check whether or not the processor supports Power ISA 2.06 or later.
 DIR="$( cd "$( dirname "$0" )" && pwd )"
-LD_SHOW_AUXV=1 $DIR/true | grep  arch_2_06 > /dev/null 2>&1
+LD_SHOW_AUXV=1 /bin/true | grep  arch_2_06 > /dev/null 2>&1
 
 if [ "$?" -ne "0" ]; then
        exit 1
index 8b991e510d7f968711529ad89971ad02da4e19b7..e268d73d5e229b2bdf9728252c8892bea33e51d3 100755 (executable)
@@ -3,7 +3,7 @@
 # We use this script to check whether or not the processor supports
 # Power ISA 2.07.
 DIR="$( cd "$( dirname "$0" )" && pwd )"
-LD_SHOW_AUXV=1 $DIR/true | grep  arch_2_07 > /dev/null 2>&1
+LD_SHOW_AUXV=1 /bin/true | grep  arch_2_07 > /dev/null 2>&1
 
 if [ "$?" -ne "0" ]; then
        exit 1