diff options
author | Joerg Bornkessel <hd_brummy@gentoo.org> | 2016-06-05 13:29:43 +0200 |
---|---|---|
committer | Joerg Bornkessel <hd_brummy@gentoo.org> | 2016-06-05 13:38:59 +0200 |
commit | abecdd587ab38fb64d6360fc130d917d3a5d87a4 (patch) | |
tree | af5909c08bc6440452cf83524e409b8956eed317 /eclass | |
parent | sci-libs/shogun: Remove extern "C", fix USE="doc" generation (diff) | |
download | gentoo-abecdd587ab38fb64d6360fc130d917d3a5d87a4.tar.gz gentoo-abecdd587ab38fb64d6360fc130d917d3a5d87a4.tar.bz2 gentoo-abecdd587ab38fb64d6360fc130d917d3a5d87a4.zip |
vdr-plugin-2.eclass: added vdr_ prefix to make function exclusiv for eclass
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/vdr-plugin-2.eclass | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/eclass/vdr-plugin-2.eclass b/eclass/vdr-plugin-2.eclass index fa52e4ed809b..f5824bd3a1d8 100644 --- a/eclass/vdr-plugin-2.eclass +++ b/eclass/vdr-plugin-2.eclass @@ -77,7 +77,7 @@ # fix_vdr_libsi_include bla.c foo.c # @CODE -# @FUNCTION: remove_i18n_include +# @FUNCTION: vdr_remove_i18n_include # @DESCRIPTION: # Compile will fail if plugin still use the old i18n language handling, # most parts are fixed by vdr-plugin-2.eclass internal functions itself. @@ -86,7 +86,7 @@ # # Example: # @CODE -# remove_i18n_include bla.n foo.n +# vdr_remove_i18n_include bla.n foo.n # @CODE # Applying your own local/user patches: @@ -343,8 +343,7 @@ vdr_i18n() { fi } -remove_i18n_include() { - # ToDo: rename this to vdr_...; IMPORTANT!!! We use this in the tree +vdr_remove_i18n_include() { # remove uneeded i18.n includes local f |