Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!

Bug 45728

Summary: Error in gst-plugins.eclass: $ omitted inside ${//} sub
Product: Gentoo Linux Reporter: Ed Catmur <ed>
Component: [OLD] GNOMEAssignee: Gentoo Linux Gnome Desktop Team <gnome>
Status: RESOLVED FIXED    
Severity: minor    
Priority: High    
Version: unspecified   
Hardware: All   
OS: All   
Whiteboard:
Package list:
Runtime testing required: ---

Description Ed Catmur 2004-03-25 11:21:32 UTC
There is apparently an error in the gentoo.org gst-plugins.eclass: at line 96,

	for plugin in ${GST_PLUGINS_BUILD}; do
		my_gst_plugins=${my_gst_plugins/plugin/}
	done

this should be

	for plugin in ${GST_PLUGINS_BUILD}; do
		my_gst_plugins=${my_gst_plugins/${plugin}/}
	done

Fortunately, ./configure regards a later --enable-foo as overriding an earlier --disable-foo, so this probably has no serious effect.

Also might I suggest using a more expressive local var than my_gst_plugins? :P
Comment 1 foser (RETIRED) gentoo-dev 2004-03-28 10:49:14 UTC
thnx for the notification, missed that obvious one because of the redundancy i built in ;)

Fixed now

Still kept the my_little_sony var though ;)