diff options
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.patch | 44 |
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 @@ | |||
1 | From 4625ce72e462950cfbbd37ad2a19be625fd081b0 Mon Sep 17 00:00:00 2001 | ||
2 | From: Mingli Yu <mingli.yu@windriver.com> | ||
3 | Date: Thu, 11 Aug 2022 17:15:30 +0800 | ||
4 | Subject: [PATCH] Don't expose configure args | ||
5 | |||
6 | Don't expost configure args to fix buildpath issue. | ||
7 | |||
8 | Upstream-Status: Inappropriate [oe specific] | ||
9 | |||
10 | Signed-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 | |||
16 | diff --git a/scripts/samhain.ebuild-light.in b/scripts/samhain.ebuild-light.in | ||
17 | index 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 | ||
29 | diff --git a/scripts/samhain.ebuild.in b/scripts/samhain.ebuild.in | ||
30 | index 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 | -- | ||
43 | 2.34.1 | ||
44 | |||