Patrick Williams | 92b42cb | 2022-09-03 06:53:57 -0500 | [diff] [blame] | 1 | From 111b1e8f35e989513d8961a45a806767109f6e1e 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.25.1 |
| 44 | |