]> code.ossystems Code Review - openembedded-core.git/commitdiff
psmisc: improve autopoint-enabling
authorRoss Burton <ross.burton@intel.com>
Fri, 5 Jan 2018 16:39:11 +0000 (16:39 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 9 Jan 2018 11:45:20 +0000 (11:45 +0000)
Instead of globally clearing EXTRA_AUTORECONF (which by default currently
contains --exclude=autopoint) use _remove to selectively remove the piece we
care about.

Signed-off-by: Ross Burton <ross.burton@intel.com>
meta/recipes-extended/psmisc/psmisc.inc

index 527a1d590f31ae7c7d80dd84a847a1122b56255f..82ef947709a1fd999b5091c1446852a828c75402 100644 (file)
@@ -18,8 +18,8 @@ inherit autotools gettext
 
 # Upstream has a custom autogen.sh which invokes po/update-potfiles as they 
 # don't ship a po/POTFILES.in (which is silly).  Without that file gettext 
-#doesn't believe po/ is a gettext directory and won't generate po/Makefile.
-EXTRA_AUTORECONF=""
+# doesn't believe po/ is a gettext directory and won't generate po/Makefile.
+EXTRA_AUTORECONF_remove = "--exclude=autopoint"
 do_configure_prepend() {
     ( cd ${S} && po/update-potfiles )
 }