aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xtrunk/src/mkbuild2
1 files changed, 1 insertions, 1 deletions
diff --git a/trunk/src/mkbuild b/trunk/src/mkbuild
index ec79912..fc2ce3b 100755
--- a/trunk/src/mkbuild
+++ b/trunk/src/mkbuild
@@ -963,7 +963,7 @@ function get_file {
echo "Trying to find $(basename $file) at $folders..."
for path in $folders; do
- for candidate in $(find $path -name $(basename $file) &> /dev/null); do
+ for candidate in $(find $path -name $(basename $file) 2> /dev/null); do
if [ ! -z "$candidate" ]; then
break 2
fi