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

Collapse All | Expand All

(-)vim-spell.eclass.orig (-3 / +11 lines)
Lines 84-92 Link Here
84
	insinto "${target}"
84
	insinto "${target}"
85
85
86
	had_spell_file=
86
	had_spell_file=
87
	for f in *.spl *.sug ; do
87
	for f in *.spl ; do
88
		doins "${f}"
88
		if [ -f "${f}" ]; then
89
		had_spell_file="yes"
89
			doins "${f}"
90
			had_spell_file="yes"
91
		fi
92
	done
93
94
	for f in *.sug ; do
95
		if [ -f "${f}" ]; then
96
			doins "${f}"
97
		fi
90
	done
98
	done
91
99
92
	for f in README* ; do
100
	for f in README* ; do

Return to bug 250853