aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58>2009-01-03 19:20:22 +0000
committerrhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58>2009-01-03 19:20:22 +0000
commit2a513cf4d421442f08b52184d2e078409f0bdac5 (patch)
tree915bd96e87dca8a5dd8fe695febda3296b2d4ad7
parentc2d39c5d61975591d56e5513318c9e678b1bb56c (diff)
downloadsimplepkg-2a513cf4d421442f08b52184d2e078409f0bdac5.tar.gz
simplepkg-2a513cf4d421442f08b52184d2e078409f0bdac5.tar.bz2
minor fix
git-svn-id: svn+slack://slack.fluxo.info/var/svn/simplepkg@727 04377dda-e619-0410-9926-eae83683ac58
-rwxr-xr-xtrunk/src/mkbuild2
1 files changed, 1 insertions, 1 deletions
diff --git a/trunk/src/mkbuild b/trunk/src/mkbuild
index 848ed5a..11f0785 100755
--- a/trunk/src/mkbuild
+++ b/trunk/src/mkbuild
@@ -937,7 +937,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)); do
+ for candidate in $(find $path -name $(basename $file) &> /dev/null); do
if [ ! -z "$candidate" ]; then
break 2
fi