From 157fccfe7b381b5d11b6288759769b59ae1f3631 Mon Sep 17 00:00:00 2001 From: Kenneth Myhra Date: Mon, 19 Jul 2021 07:06:24 -0700 Subject: [PATCH] Ports/dosbox-staging: Change 'serenity*' build target to '*serenity*' The serenity build target in config.sub did not match 'i686-pc-serenity'. This commit changes the build target from 'serenity*' to '*serenity*'. --- Ports/dosbox-staging/package.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ports/dosbox-staging/package.sh b/Ports/dosbox-staging/package.sh index cd2644b081..e1467bcf70 100755 --- a/Ports/dosbox-staging/package.sh +++ b/Ports/dosbox-staging/package.sh @@ -16,5 +16,5 @@ export CPPFLAGS="-I${SERENITY_INSTALL_ROOT}/usr/local/include/SDL2" pre_configure() { run ./autogen.sh - run sed -i 's@irix\* \\@irix* | serenity* \\@' config.sub + run sed -i 's@irix\* \\@irix* | *serenity* \\@' config.sub }