build_engine.sh: just avoid passing CC, CXX and FTE_TARGET to the makelibs target of FTEQW to avoid headaches. Clearly makelibs doesn't handle any of this well without multiple passes. Just passing FTE_TARGET will sometimes not link libpng correctly? Someone else can study this if they like

This commit is contained in:
Marco Cawthorne 2022-07-13 11:25:14 -07:00
parent 98afd5fa28
commit ddce7932f0
Signed by: eukara
GPG Key ID: CE2032F0A2882A22
1 changed files with 1 additions and 1 deletions

View File

@ -142,7 +142,7 @@ fi
if [ "$BUILD_ENGINE_DEPENDENCIES" -eq 1 ]
then
$MAKE -j $BUILD_PROC CC=$ENGINE_CC CXX=$ENGINE_CXX makelibs FTE_TARGET=$PLATFORM
$MAKE -j $BUILD_PROC makelibs
printf "Built the static dependencies successfully.\n\n"
fi