Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 45728 - Error in gst-plugins.eclass: $ omitted inside ${//} sub
Summary: Error in gst-plugins.eclass: $ omitted inside ${//} sub
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] GNOME (show other bugs)
Hardware: All All
: High minor
Assignee: Gentoo Linux Gnome Desktop Team
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2004-03-25 11:21 UTC by Ed Catmur
Modified: 2004-03-28 10:49 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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 ;)