busybox: handle config values containing spaces

Also just a nice simplification.
This commit is contained in:
Alyssa Ross
2026-01-30 14:27:29 +01:00
parent 7d7b281c94
commit 9e6e03bd34
+1 -4
View File
@@ -20,10 +20,7 @@ assert stdenv.hostPlatform.libc == "musl" -> useMusl;
let
configParser = ''
function parseconfig {
while read LINE; do
NAME=`echo "$LINE" | cut -d \ -f 1`
OPTION=`echo "$LINE" | cut -d \ -f 2`
while IFS=" " read NAME OPTION; do
if ! [[ "$NAME" =~ ^CONFIG_ ]]; then continue; fi
echo "parseconfig: removing $NAME"