diff options
author | Ross Burton <ross.burton@intel.com> | 2018-01-05 16:39:11 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-01-11 10:26:06 +0000 |
commit | 47022546cfa6c509c8f11e52c3e6310ac68660a3 (patch) | |
tree | b9f9f3c3d0407bb5e833b90e82f52a5795d52856 /meta/recipes-extended/psmisc | |
parent | 205cfd702190026e64eed9cae27c05ff62d1637e (diff) | |
download | poky-47022546cfa6c509c8f11e52c3e6310ac68660a3.tar.gz |
psmisc: improve autopoint-enabling
Instead of globally clearing EXTRA_AUTORECONF (which by default currently
contains --exclude=autopoint) use _remove to selectively remove the piece we
care about.
(From OE-Core rev: 93fe0f5044d30407c9afc69cbb570a82b6c82e5d)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/psmisc')
-rw-r--r-- | meta/recipes-extended/psmisc/psmisc.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-extended/psmisc/psmisc.inc b/meta/recipes-extended/psmisc/psmisc.inc index 527a1d590f..82ef947709 100644 --- a/meta/recipes-extended/psmisc/psmisc.inc +++ b/meta/recipes-extended/psmisc/psmisc.inc | |||
@@ -18,8 +18,8 @@ inherit autotools gettext | |||
18 | 18 | ||
19 | # Upstream has a custom autogen.sh which invokes po/update-potfiles as they | 19 | # Upstream has a custom autogen.sh which invokes po/update-potfiles as they |
20 | # don't ship a po/POTFILES.in (which is silly). Without that file gettext | 20 | # don't ship a po/POTFILES.in (which is silly). Without that file gettext |
21 | #doesn't believe po/ is a gettext directory and won't generate po/Makefile. | 21 | # doesn't believe po/ is a gettext directory and won't generate po/Makefile. |
22 | EXTRA_AUTORECONF="" | 22 | EXTRA_AUTORECONF_remove = "--exclude=autopoint" |
23 | do_configure_prepend() { | 23 | do_configure_prepend() { |
24 | ( cd ${S} && po/update-potfiles ) | 24 | ( cd ${S} && po/update-potfiles ) |
25 | } | 25 | } |