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*'.
This commit is contained in:
Kenneth Myhra 2021-07-19 07:06:24 -07:00 committed by Gunnar Beutner
parent 777e103908
commit 157fccfe7b

View file

@ -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
}