From ce400bd735fce5ec7c1accbd62fdd3746ea3482d Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Fri, 25 Apr 2025 12:40:03 -0500 Subject: [PATCH] Fix defconfig build. --- scripts/make.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/make.sh b/scripts/make.sh index c9d5a327..c2e79c42 100755 --- a/scripts/make.sh +++ b/scripts/make.sh @@ -175,7 +175,7 @@ then then cat "$GENDIR"/config.h else - $SED '/USE_.*([^)]*)$/s/$/ __VA_ARGS__/' "$GENDIR"/config.h + $SED -E '/(USE|SKIP)_.*\([^)]*\)$/s/$/ __VA_ARGS__/' "$GENDIR"/config.h fi echo '#include "lib/toyflags.h"' cat "$GENDIR"/newtoys.h -- 2.39.5