aboutsummaryrefslogtreecommitdiff
path: root/meta-yerba/recipes-core
diff options
context:
space:
mode:
authorArslaan Pathan <[email protected]>2026-06-14 19:47:56 +1200
committerArslaan Pathan <[email protected]>2026-06-14 19:47:56 +1200
commit1edc2605cfc4c5d5deb9744566e6c8a3c61078f9 (patch)
treee0db0019b112f3c780e3ff0d6d62c85c9d6a8c5d /meta-yerba/recipes-core
parent76f2d2fad1d196f639a2f5c8b9f14e1b8f3c339a (diff)
downloadyerbalinux-1edc2605cfc4c5d5deb9744566e6c8a3c61078f9.tar.xz
yerbalinux-1edc2605cfc4c5d5deb9744566e6c8a3c61078f9.zip
Fix the stripped issue
Diffstat (limited to 'meta-yerba/recipes-core')
-rw-r--r--meta-yerba/recipes-core/runit/runit_2.3.1.bb7
1 files changed, 6 insertions, 1 deletions
diff --git a/meta-yerba/recipes-core/runit/runit_2.3.1.bb b/meta-yerba/recipes-core/runit/runit_2.3.1.bb
index e6e0617..4b8122b 100644
--- a/meta-yerba/recipes-core/runit/runit_2.3.1.bb
+++ b/meta-yerba/recipes-core/runit/runit_2.3.1.bb
@@ -10,6 +10,11 @@ S = "${WORKDIR}/git"
do_compile() {
cd ${S}
+ export CC="${CC}"
+ export AR="${AR}"
+ export RANLIB="${RANLIB}"
+ export CFLAGS="${CFLAGS} -D_GNU_SOURCE -static"
+ export LDFLAGS="${LDFLAGS} -static"
./package/compile
}
@@ -44,5 +49,5 @@ RDEPENDS:${PN} += "busybox"
PROVIDES += "runit-init"
-# Prevents yocto from shitting itself and telling me "oh its a fatal QA issue the binaries are stripped" LET ME LIVE
+# Prevents yocto from shitting itself and telling me "oh its a fatal QA issue the binaries are stripped" LET ME L
INSANE_SKIP:${PN} += "already-stripped debug-files"