Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 333519 - missing options for eautoreconf -vfi
Summary: missing options for eautoreconf -vfi
Status: RESOLVED NEEDINFO
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Eclasses (show other bugs)
Hardware: All Linux
: High major (vote)
Assignee: Gentoo Linux bug wranglers
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2010-08-19 22:19 UTC by Alex Marcat
Modified: 2010-08-22 12:43 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 Alex Marcat 2010-08-19 22:19:16 UTC
I was writing an ebuild for a third-party package.
I needed to run autoreconf with -vfi options (as I've seen in a testing directory where I compiled it manually)
I tried to write simply "eautoreconf -vfi", thinking that, as for econf and emake, those options were sent to the autoreconf. But it seems to ignore them.
So I opened the eclass for eautoreconf and I've seen it doesn't call autoreconf, but it looks like re-implemented. But not those options I need for my build

Reproducible: Always




At the moment I have temporary fixed this problem by using autoreconf directly in my ebuild, but, of course, it should be avoided.
Comment 1 Diego Elio Pettenò (RETIRED) gentoo-dev 2010-08-19 22:39:49 UTC
Unless you provide some information on which problems you got when using simple eautoreconf, this bug is not going anywhere.
Comment 2 Alex Marcat 2010-08-22 12:43:55 UTC
(In reply to comment #1)
> Unless you provide some information on which problems you got when using simple
> eautoreconf, this bug is not going anywhere.
> 

the eautoreconf ignores the "-vfi" option, needed for compiling this ebuild, because the third-party software has a sort of "chained" ./configure to be created and runned. There're many folders in the source, each of them with their configure.ac etc; to be translated into the configure script to write each Makefile.
Infact, the Makefile of the main dir tries to run make for each Makefile in the subdirectories, but it isn't able to find them, of course