summaryrefslogtreecommitdiffstats
path: root/recipes-ids/samhain/files/0012-Don-t-expose-configure-args.patch
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-ids/samhain/files/0012-Don-t-expose-configure-args.patch')
-rw-r--r--recipes-ids/samhain/files/0012-Don-t-expose-configure-args.patch44
1 files changed, 44 insertions, 0 deletions
diff --git a/recipes-ids/samhain/files/0012-Don-t-expose-configure-args.patch b/recipes-ids/samhain/files/0012-Don-t-expose-configure-args.patch
new file mode 100644
index 0000000..f881b5d
--- /dev/null
+++ b/recipes-ids/samhain/files/0012-Don-t-expose-configure-args.patch
@@ -0,0 +1,44 @@
1From 4625ce72e462950cfbbd37ad2a19be625fd081b0 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.34.1
44