Note: Due to technical difficulties, the Archives are currently not up to date.
GMANE provides an alternative service for most mailing lists. c.f. bug 424647
List Archive: gentoo-devhelp
Is there a way to call the default implementation of a function inside
the ebuild-specified one?
What I mean is:
src_prepare() {
if [ "$PV" == "9999" ]; then
./autogen.sh
else
src_prepare() # Default from eclass.
fi
}
Possible?
|
|