aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArslaan Pathan <[email protected]>2026-06-19 12:57:19 +1200
committerArslaan Pathan <[email protected]>2026-06-19 12:57:19 +1200
commit495ce621778e11cce018689f6c3df3babf80840b (patch)
tree48fcc86f1e4795442446f869b6d5508d71f04f91
parent35fb1527c7614a85eccded0319ebb0220d1dd74b (diff)
downloadyerbalinux-495ce621778e11cce018689f6c3df3babf80840b.tar.xz
yerbalinux-495ce621778e11cce018689f6c3df3babf80840b.zip
Fix the doas to actually compile properly
-rw-r--r--meta-yerba/recipes-support/doas/doas_6.8.2.bb6
1 files changed, 5 insertions, 1 deletions
diff --git a/meta-yerba/recipes-support/doas/doas_6.8.2.bb b/meta-yerba/recipes-support/doas/doas_6.8.2.bb
index 8fdad96..82a1e42 100644
--- a/meta-yerba/recipes-support/doas/doas_6.8.2.bb
+++ b/meta-yerba/recipes-support/doas/doas_6.8.2.bb
@@ -12,12 +12,16 @@ S = "${WORKDIR}/OpenDoas-6.8.2"
DEPENDS = "libbsd bison-native"
-do_compile() {
+do_configure() {
cd ${S}
export CC="${CC}"
export CFLAGS="${CFLAGS} -I${STAGING_INCDIR}"
export LDFLAGS="${LDFLAGS} -L${STAGING_LIBDIR}"
./configure --prefix=/usr
+}
+
+do_compile() {
+ cd ${S}
oe_runmake
}