All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-networking][PATCH] conntrack-tools: fix postinst script
@ 2022-05-10  3:24 kai.kang
  2022-05-18  7:30 ` Diego Sueiro
  0 siblings, 1 reply; 2+ messages in thread
From: kai.kang @ 2022-05-10  3:24 UTC (permalink / raw)
  To: openembedded-devel

From: Kai Kang <kai.kang@windriver.com>

Fix error caused by postinst script of conntrack-tools:

| /var/tmp/rpm-tmp.or09Iq: line 4: unexpected EOF while looking for matching `"'
| %post(conntrack-tools-1.4.6-r0.core2_64): waitpid(1173) rc 1173 status 200
| warning: %post(conntrack-tools-1.4.6-r0.core2_64) scriptlet failed, exit status 2

Signed-off-by: Kai Kang <kai.kang@windriver.com>
---
 .../recipes-filter/conntrack-tools/conntrack-tools_1.4.6.bb   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta-networking/recipes-filter/conntrack-tools/conntrack-tools_1.4.6.bb b/meta-networking/recipes-filter/conntrack-tools/conntrack-tools_1.4.6.bb
index e76238fe0..50f7ced88 100644
--- a/meta-networking/recipes-filter/conntrack-tools/conntrack-tools_1.4.6.bb
+++ b/meta-networking/recipes-filter/conntrack-tools/conntrack-tools_1.4.6.bb
@@ -35,5 +35,5 @@ do_install:append() {
 
 # fix error message: Do not forget that you need *root* or CAP_NET_ADMIN capabilities ;-)
 pkg_postinst:${PN} () {
-    setcap cap_net_admin+ep $D/${sbindir}/conntrack"
-}
\ No newline at end of file
+    setcap cap_net_admin+ep "$D/${sbindir}/conntrack"
+}
-- 
2.17.1



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

* Re: [meta-networking][PATCH] conntrack-tools: fix postinst script
  2022-05-10  3:24 [meta-networking][PATCH] conntrack-tools: fix postinst script kai.kang
@ 2022-05-18  7:30 ` Diego Sueiro
  0 siblings, 0 replies; 2+ messages in thread
From: Diego Sueiro @ 2022-05-18  7:30 UTC (permalink / raw)
  To: openembedded-devel

Hi,

Can we please have this patch backported to the kirkstone branch ASAP since builds including this package are currently broken?

Cheers,
Diego Sueiro


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

end of thread, other threads:[~2022-05-18  7:30 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-05-10  3:24 [meta-networking][PATCH] conntrack-tools: fix postinst script kai.kang
2022-05-18  7:30 ` Diego Sueiro

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.