summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2006-12-17 01:28:49 +0000
committerMike Frysinger <vapier@gentoo.org>2006-12-17 01:28:49 +0000
commita0ef44536899a34b784dddf1f0dab99334729177 (patch)
tree832795f136ff14d628d55c9288328cd2a6a3b3a8 /bin/ebuild.sh
parentMake use_reduce raise an InvalidDependString exception for use? conditionals ... (diff)
downloadportage-multirepo-a0ef44536899a34b784dddf1f0dab99334729177.tar.gz
portage-multirepo-a0ef44536899a34b784dddf1f0dab99334729177.tar.bz2
portage-multirepo-a0ef44536899a34b784dddf1f0dab99334729177.zip
remove pointless redirects to /dev/null when using hasq()
svn path=/main/trunk/; revision=5306
Diffstat (limited to 'bin/ebuild.sh')
-rwxr-xr-xbin/ebuild.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/ebuild.sh b/bin/ebuild.sh
index 1b07ad55..4dda6af4 100755
--- a/bin/ebuild.sh
+++ b/bin/ebuild.sh
@@ -901,7 +901,7 @@ dyn_compile() {
fi
unset LIBDIR_VAR
- if hasq noauto $FEATURES &>/dev/null && [ ! -f ${PORTAGE_BUILDDIR}/.unpacked ]; then
+ if hasq noauto $FEATURES && [ ! -f ${PORTAGE_BUILDDIR}/.unpacked ]; then
echo
echo "!!! We apparently haven't unpacked... This is probably not what you"
echo "!!! want to be doing... You are using FEATURES=noauto so I'll assume"
@@ -1367,7 +1367,7 @@ if [[ ${EBUILD_SH_ARGS} != "depend" ]] && [[ ${EBUILD_SH_ARGS} != "clean" ]] &&
export USER=portage
fi
- if hasq distcc ${FEATURES} &>/dev/null; then
+ if hasq distcc ${FEATURES} ; then
if [ -d /usr/lib/distcc/bin ]; then
#We can enable distributed compile support
if [ -z "${PATH/*distcc*/}" ]; then