Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 196723 - media-video/ffmpeg passes EXTRA_ECONF twice
Summary: media-video/ffmpeg passes EXTRA_ECONF twice
Status: RESOLVED INVALID
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All Linux
: High trivial (vote)
Assignee: Gentoo Media-video project
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-10-22 17:34 UTC by Christoph Mende (RETIRED)
Modified: 2008-09-07 21:31 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 Christoph Mende (RETIRED) gentoo-dev 2007-10-22 17:34:07 UTC
the ebuild's using local myconf="${EXTRA_ECONF}" while EXTRA_ECONF is already passed to econf which leads to nice errors, for example:
loki ~ # EXTRA_ECONF="-q" emerge ffmpeg
>>> Verifying ebuild Manifests...

>>> Emerging (1 of 1) media-video/ffmpeg-0.4.9_p20070616-r1 to /
 * Applying ffmpeg-libdir-2007.patch ...                                                                                                                                        [ ok ]
 * Applying ffmpeg-shared-gcc4.1.patch ...                                                                                                                                      [ ok ]
Unknown option "-q".
See ./configure --help for available options.
 * 
 * ERROR: media-video/ffmpeg-0.4.9_p20070616-r1 failed.

removing said line from the ebuild fixes this and configure stays quiet (so -q is actually valid, configure just doesn't like it twice)
Comment 1 Alexis Ballier gentoo-dev 2008-01-27 00:00:29 UTC
Well, ffmpeg doesn't use autotools and its configure bails out on unknown option, so I'd say it's your fault for having fed it with an invalid option :)
(note that the configure is quiet regardless of using -q or not)

From my pov, the bug is invalid. What can be questionned is why using extra_econf for a non autotoolized configure, but I'm sure Luca has a good reason for that.
Comment 2 Alexis Ballier gentoo-dev 2008-09-07 21:31:28 UTC
(In reply to comment #1)
> Well, ffmpeg doesn't use autotools and its configure bails out on unknown
> option, so I'd say it's your fault for having fed it with an invalid option :)
> (note that the configure is quiet regardless of using -q or not)
> 
> From my pov, the bug is invalid. What can be questionned is why using
> extra_econf for a non autotoolized configure, but I'm sure Luca has a good
> reason for that.


closing as invalid then