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

Collapse All | Expand All

(-)eclass/gnome2-utils.eclass (-1 / +3 lines)
Lines 179-185 Link Here
179
	fi
179
	fi
180
180
181
	# testing fixing of all makefiles found
181
	# testing fixing of all makefiles found
182
	for filename in $(find ./ -name "Makefile.in" -o -name "Makefile.am") ; do
182
	# The sort is important to ensure .am is listed before the respective .in for
183
	# maintainer mode regeneration not kicking in due to .am being newer than .in
184
	for filename in $(find ./ -name "Makefile.in" -o -name "Makefile.am" |sort) ; do
183
		omf_makefiles="${omf_makefiles} ${filename}"
185
		omf_makefiles="${omf_makefiles} ${filename}"
184
	done
186
	done
185
187

Return to bug 236649