List Archive: gentoo-devhelp
On 10/31/2009 11:37 PM, Mike Frysinger wrote:
> On Saturday 31 October 2009 11:47:54 Nikos Chantziaras wrote:
>> 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?
>
> better to wrap the func definition:
> if [[ ${PV} == "9999" ]] ; then
> src_prepare() { eautoreconf; }
> fi
/usr/local/portage/app-misc/mc/mc-9999.ebuild: line 49: syntax error
near unexpected token `fi'
/usr/local/portage/app-misc/mc/mc-9999.ebuild: line 49: `fi'
* ERROR: app-misc/mc-9999 failed:
* error sourcing ebuild
|
|