mirror of
https://github.com/OpenRCT2/OpenRCT2.git
synced 2025-01-23 10:51:58 -05:00
fix old bug in unix build where we built g2 before symlinking
This commit is contained in:
parent
ca4f2d0fa3
commit
2dda7e9f94
2 changed files with 5 additions and 5 deletions
8
build.sh
8
build.sh
|
@ -11,15 +11,15 @@ pushd build
|
|||
make
|
||||
popd
|
||||
|
||||
if [[ ! -h openrct2.dll ]]; then
|
||||
ln -s build/openrct2.dll openrct2.dll
|
||||
fi
|
||||
|
||||
if [[ -z "$DISABLE_G2_BUILD" ]]; then
|
||||
echo Building: data/g2.dat
|
||||
./build_g2.sh > /dev/null 2>&1
|
||||
fi
|
||||
|
||||
if [[ ! -h openrct2.dll ]]; then
|
||||
ln -s build/openrct2.dll openrct2.dll
|
||||
fi
|
||||
|
||||
if [[ -t 1 ]]; then
|
||||
echo -e "\nDone! Run OpenRCT2 by typing:\n\n\033[95mwine openrct2.exe\n\033[0m"
|
||||
else
|
||||
|
|
|
@ -85,7 +85,7 @@ if [[ ! -d $cachedir/SDL2-${SDL2_PV} ]]; then
|
|||
popd
|
||||
fi
|
||||
if [[ ! -f $cachedir/orctlibs.zip ]]; then
|
||||
wget https://download.openrct2.website/dev/lib/mingw --secure-protocol=tlsv1_2 --output-document $cachedir/orctlibs.zip;
|
||||
wget https://download.openrct2.website/dev/lib/mingw --secure-protocol=TLSv1 --output-document $cachedir/orctlibs.zip;
|
||||
fi
|
||||
if [[ ! -d $cachedir/orctlibs ]]; then
|
||||
mkdir -p $cachedir/orctlibs
|
||||
|
|
Loading…
Add table
Reference in a new issue