Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix Syntax error. Redirection wrong way around. Thanks @ksooo !
  • Loading branch information
dreamcat4 committed Aug 16, 2014
1 parent e679aef commit f78ce0a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions support/configure.inc
Expand Up @@ -263,7 +263,7 @@ int main() {
#endif
}
EOF
$CC $CFLAGS $LDFLAGS $TMPDIR/$$.c -o $TMPDIR/$$.bin $opt 2>&1 /dev/null
$CC $CFLAGS $LDFLAGS $TMPDIR/$$.c -o $TMPDIR/$$.bin $opt > /dev/null 2>&1
RET=$?
rm -f $TMPDIR/$$.{c,bin}
return $RET
Expand Down Expand Up @@ -356,7 +356,7 @@ check_py ()
cat >$TMPDIR/$$.py <<EOF
$hdr
EOF
$PYTHON $TMPDIR/$$.py 2>&1 /dev/null
$PYTHON $TMPDIR/$$.py > /dev/null 2>&1
RET=$?
rm -f $TMPDIR/$$.py
return $RET
Expand Down
6 changes: 3 additions & 3 deletions support/getmuxlist
Expand Up @@ -11,13 +11,13 @@ DIR=$1
if [ -d "${DIR}/.git" ]; then
LAST=$(pwd)
cd "${DIR}" || exit 1
git pull 2>&1 /dev/null || exit 1
git reset --hard 2>&1 /dev/null || exit 1
git pull > /dev/null 2>&1 || exit 1
git reset --hard > /dev/null 2>&1 || exit 1
cd "${LAST}" || exit 1
# Fetch
elif [ ! -d "${DIR}" ]; then
URL=http://linuxtv.org/git/dtv-scan-tables.git
git clone $URL "${DIR}" 2>&1 /dev/null || exit 1
git clone $URL "${DIR}" > /dev/null 2>&1 || exit 1
fi

# Note: will not update existing set (if not .git)
Expand Down

0 comments on commit f78ce0a

Please sign in to comment.