blob: fedbe5b7bc3fdb2478dc486bfdd46b4d7cc1bb3e [file] [log] [blame]
Patrick Williams92b42cb2022-09-03 06:53:57 -05001From 111b1e8f35e989513d8961a45a806767109f6e1e Mon Sep 17 00:00:00 2001
2From: Mingli Yu <mingli.yu@windriver.com>
3Date: Thu, 11 Aug 2022 17:15:30 +0800
4Subject: [PATCH] Don't expose configure args
5
6Don't expost configure args to fix buildpath issue.
7
8Upstream-Status: Inappropriate [oe specific]
9
10Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
11---
12 scripts/samhain.ebuild-light.in | 2 +-
13 scripts/samhain.ebuild.in | 2 +-
14 2 files changed, 2 insertions(+), 2 deletions(-)
15
16diff --git a/scripts/samhain.ebuild-light.in b/scripts/samhain.ebuild-light.in
17index 2b09cdb..b7f7062 100644
18--- a/scripts/samhain.ebuild-light.in
19+++ b/scripts/samhain.ebuild-light.in
20@@ -55,7 +55,7 @@ src_compile() {
21 # --with-state-dir=/var/lib/${PN} \
22 # --with-log-file=/var/log/${PN}.log \
23
24- ./configure ${myconf} @mydefargs@ || die
25+ ./configure ${myconf} mydefargs || die
26 emake || die
27
28 echo '#!/bin/sh' > ./sstrip
29diff --git a/scripts/samhain.ebuild.in b/scripts/samhain.ebuild.in
30index 635a746..b9a42e7 100644
31--- a/scripts/samhain.ebuild.in
32+++ b/scripts/samhain.ebuild.in
33@@ -55,7 +55,7 @@ src_compile() {
34 # --with-state-dir=/var/lib/${PN} \
35 # --with-log-file=/var/log/${PN}.log \
36
37- ./configure ${myconf} @mydefargs@ || die
38+ ./configure ${myconf} mydefargs || die
39 emake || die
40
41 echo '#!/bin/sh' > ./sstrip
42--
432.25.1
44