diff options
author | 2010-09-08 22:56:17 +0200 | |
---|---|---|
committer | 2010-09-08 22:56:17 +0200 | |
commit | 687a594417af86c4803a27387903bfa94a583ecf (patch) | |
tree | ea4e6e071c13991d8fae9f87cc569724ddbe3870 /eclass/gnome2-live.eclass | |
parent | Add app-pda/gtkpod-9999, media-libs/libgpod-9999 (diff) | |
download | gnome-live-687a594417af86c4803a27387903bfa94a583ecf.tar.gz gnome-live-687a594417af86c4803a27387903bfa94a583ecf.tar.bz2 gnome-live-687a594417af86c4803a27387903bfa94a583ecf.zip |
eclass: strict detection of intltool macros + qa warn
Diffstat (limited to 'eclass/gnome2-live.eclass')
-rw-r--r-- | eclass/gnome2-live.eclass | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/eclass/gnome2-live.eclass b/eclass/gnome2-live.eclass index 16ab4fe..3245416 100644 --- a/eclass/gnome2-live.eclass +++ b/eclass/gnome2-live.eclass @@ -68,7 +68,11 @@ gnome2-live_src_prepare() { gnome-doc-common gnome-doc-prepare --automake fi - if grep -qe "INTLTOOL" configure.*; then + if grep -qe "IT_PROG_INTLTOOL" -e "AC_PROG_INTLTOOL" configure.*; then + if grep -qe "AC_PROG_INTLTOOL" configure.*; then + eqawarn "This package is using deprecated AC_PROG_INTLTOOL macro." + eqawarn "Please fill a bug to the upstream of this package." + fi intltoolize --force fi if test -e m4; then |