diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-12-17 01:28:49 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-12-17 01:28:49 +0000 |
commit | a0ef44536899a34b784dddf1f0dab99334729177 (patch) | |
tree | 832795f136ff14d628d55c9288328cd2a6a3b3a8 | |
parent | 31e2c6934be25c49eda90f7271eee79fa42737a5 (diff) | |
download | portage-a0ef44536899a34b784dddf1f0dab99334729177.tar.gz portage-a0ef44536899a34b784dddf1f0dab99334729177.tar.bz2 portage-a0ef44536899a34b784dddf1f0dab99334729177.zip |
remove pointless redirects to /dev/null when using hasq()
svn path=/main/trunk/; revision=5306
-rwxr-xr-x | bin/ebuild.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/ebuild.sh b/bin/ebuild.sh index 1b07ad55b..4dda6af42 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 |