Gentoo Archives: gentoo-devhelp

From: Nikos Chantziaras <realnc@×××××.de>
To: gentoo-devhelp@l.g.o
Subject: [gentoo-devhelp] Calling the default implementation of a function
Date: Sat, 31 Oct 2009 15:48:47
Message-Id: hchm76$bpr$1@ger.gmane.org
1 Is there a way to call the default implementation of a function inside
2 the ebuild-specified one?
3
4 What I mean is:
5
6 src_prepare() {
7 if [ "$PV" == "9999" ]; then
8 ./autogen.sh
9 else
10 src_prepare() # Default from eclass.
11 fi
12 }
13
14 Possible?

Replies