Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 356389 | Differences between
and this patch

Collapse All | Expand All

(-)a/bin/ebuild-helpers/4/dodoc (-1 / +1 lines)
Lines 36-42 for x in "$@" ; do Link Here
36
				${0} -r {} \;
36
				${0} -r {} \;
37
37
38
	elif [ -s "${x}" ] ; then
38
	elif [ -s "${x}" ] ; then
39
		install -m0644 "${x}" "${dir}"
39
		install -m0644 "${x}" "${dir}" || ((ret|=1))
40
	elif [ ! -e "${x}" ] ; then
40
	elif [ ! -e "${x}" ] ; then
41
		echo "!!! ${0##*/}: $x does not exist" 1>&2
41
		echo "!!! ${0##*/}: $x does not exist" 1>&2
42
		((ret|=1))
42
		((ret|=1))
(-)a/bin/ebuild-helpers/dodoc (-2 / +1 lines)
Lines 17-23 fi Link Here
17
ret=0
17
ret=0
18
for x in "$@" ; do
18
for x in "$@" ; do
19
	if [ -s "${x}" ] ; then
19
	if [ -s "${x}" ] ; then
20
		install -m0644 "${x}" "${dir}"
20
		install -m0644 "${x}" "${dir}" || { ((ret|=1)); continue; }
21
		ecompress --queue "${dir}/${x##*/}"
21
		ecompress --queue "${dir}/${x##*/}"
22
	elif [ ! -e "${x}" ] ; then
22
	elif [ ! -e "${x}" ] ; then
23
		echo "!!! ${0##*/}: $x does not exist" 1>&2
23
		echo "!!! ${0##*/}: $x does not exist" 1>&2
24
- 

Return to bug 356389