diff options
author | Tomas Chvatal <scarabeus@gentoo.org> | 2010-01-13 15:06:11 +0000 |
---|---|---|
committer | Tomas Chvatal <scarabeus@gentoo.org> | 2010-01-13 15:06:11 +0000 |
commit | 850448f598928baf9af3a0adf88aa9686dcdc861 (patch) | |
tree | 36b0a3c0333989a92b2a612a608cc368511ab3fd /eclass | |
parent | Mask unused poppler Qt3 bindings (bug #300162). (diff) | |
download | gentoo-2-850448f598928baf9af3a0adf88aa9686dcdc861.tar.gz gentoo-2-850448f598928baf9af3a0adf88aa9686dcdc861.tar.bz2 gentoo-2-850448f598928baf9af3a0adf88aa9686dcdc861.zip |
Use correct fallback function, since we dont inherit base eclass at all.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/gnat.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/gnat.eclass b/eclass/gnat.eclass index f9beb314175f..21a85d9596c1 100644 --- a/eclass/gnat.eclass +++ b/eclass/gnat.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/gnat.eclass,v 1.38 2009/03/26 09:56:51 george Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/gnat.eclass,v 1.39 2010/01/13 15:06:11 scarabeus Exp $ # # Author: George Shapovalov <george@gentoo.org> # Belongs to: ada herd <ada@gentoo.org> @@ -328,7 +328,7 @@ gnat_pkg_postinst() { # standard lib_compile plug. Adapted from base.eclass lib_compile() { debug-print-function $FUNCNAME $* - [ -z "$1" ] && base_src_compile all + [ -z "$1" ] && lib_compile all cd ${SL} |