All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] pseudo: Make it possible to override the append in a bbappend
@ 2015-12-02 13:22 Fabrice Coulon
  2015-12-02 19:05 ` Andre McCurdy
  0 siblings, 1 reply; 3+ messages in thread
From: Fabrice Coulon @ 2015-12-02 13:22 UTC (permalink / raw)
  To: openembedded-core; +Cc: Fabrice Coulon

I need this in order to avoid a conflict when used with
base-passwd-native.

Signed-off-by: Fabrice Coulon <fabrice.coulon@axis.com>
---
 meta/recipes-devtools/pseudo/pseudo_1.7.4.bb | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/meta/recipes-devtools/pseudo/pseudo_1.7.4.bb b/meta/recipes-devtools/pseudo/pseudo_1.7.4.bb
index d68e0af..87e624e 100644
--- a/meta/recipes-devtools/pseudo/pseudo_1.7.4.bb
+++ b/meta/recipes-devtools/pseudo/pseudo_1.7.4.bb
@@ -11,9 +11,13 @@ SRC_URI[sha256sum] = "f33ff84da328f943155f22cfd49030ef4ad85ad35fc2d9419a203521b6
 
 PSEUDO_EXTRA_OPTS ?= "--enable-force-async --without-passwd-fallback"
 
-do_install_append_class-native () {
+append_class_native() {
 	install -d ${D}${sysconfdir}
 	# The fallback files should never be modified
 	install -m 444 ${WORKDIR}/fallback-passwd ${D}${sysconfdir}/passwd
 	install -m 444 ${WORKDIR}/fallback-group ${D}${sysconfdir}/group
 }
+
+do_install_append_class-native () {
+	append_class_native
+}
-- 
1.9.1



^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-12-07  9:15 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-12-02 13:22 [PATCH] pseudo: Make it possible to override the append in a bbappend Fabrice Coulon
2015-12-02 19:05 ` Andre McCurdy
2015-12-07  9:15   ` Fabrice Coulon

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.