Skip to content

Commit

Permalink
redirect which output to /dev/null
Browse files Browse the repository at this point in the history
  • Loading branch information
gnif2 committed Jan 27, 2011
1 parent ebda5eb commit db4e8a4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apxs.sh
@@ -1,7 +1,7 @@
#!/bin/sh
APXS=`which apxs2`
APXS=`which apxs2 2>/dev/null`
if [ -z "$APXS" ]; then
APXS=`which apxs`
APXS=`which apxs 2>/dev/null`
fi

if [ -z "$APXS" ]; then
Expand Down

0 comments on commit db4e8a4

Please sign in to comment.