diff options
-rw-r--r-- | eclass/gnome2-live.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/gnome2-live.eclass b/eclass/gnome2-live.eclass index 311b7f1..16ab4fe 100644 --- a/eclass/gnome2-live.eclass +++ b/eclass/gnome2-live.eclass @@ -17,7 +17,7 @@ inherit autotools gnome2 gnome2-utils libtool git # Stolen from git.eclass EXPORTED_FUNCTIONS="src_unpack pkg_postinst" case "${EAPI:-0}" in - 2) EXPORTED_FUNCTIONS="${EXPORTED_FUNCTIONS} src_prepare" ;; + 2|3) EXPORTED_FUNCTIONS="${EXPORTED_FUNCTIONS} src_prepare" ;; 0|1) ;; *) die "Unknown EAPI, Bug eclass maintainers." ;; esac @@ -68,7 +68,7 @@ gnome2-live_src_prepare() { gnome-doc-common gnome-doc-prepare --automake fi - if grep -qe "IT_PROG_INTLTOOL" configure.*; then + if grep -qe "INTLTOOL" configure.*; then intltoolize --force fi if test -e m4; then |