Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 25472
Collapse All | Expand All

(-)/usr/lib/portage/bin/ebuild.sh (-2 / +6 lines)
Lines 85-91 Link Here
85
	local x
85
	local x
86
	for x in ${USE}; do
86
	for x in ${USE}; do
87
		if [ "${x}" == "${1}" ]; then
87
		if [ "${x}" == "${1}" ]; then
88
			tty --quiet < /dev/stdout || echo "${x}"
88
			test -r /dev/fd/1 \
89
				&& (tty --quiet < /dev/stdout || echo "${x}") \
90
				|| echo "${x}"
89
			return 0
91
			return 0
90
		fi
92
		fi
91
	done
93
	done
Lines 101-107 Link Here
101
	
103
	
102
	for x in "$@"; do
104
	for x in "$@"; do
103
		if [ "${x}" == "${me}" ]; then
105
		if [ "${x}" == "${me}" ]; then
104
			tty --quiet < /dev/stdout || echo "${x}"
106
			test -r /dev/fd/1 \
107
				&& (tty --quiet < /dev/stdout || echo "${x}") \
108
				|| echo "${x}"
105
			return 0
109
			return 0
106
		fi
110
		fi
107
	done
111
	done

Return to bug 25472