Build system: Use '. ' instead of the 'source' shell builtin.

This commit is contained in:
Marco Cawthorne 2021-06-26 21:50:17 +02:00
parent e42b714458
commit 6edba5dad4
4 changed files with 3 additions and 4 deletions

View File

@ -1,5 +1,4 @@
#!/bin/sh
source ./build.cfg
./build_engine.sh
./get_gamepacks.sh
./build_game.sh

View File

@ -1,5 +1,5 @@
#!/bin/sh
source ./build.cfg
. ./build.cfg
mv_wsfile()
{

View File

@ -1,5 +1,5 @@
#!/bin/sh
source ./build.cfg
. ./build.cfg
set -e
FTE_MAKEFILE=./src/engine/engine/Makefile

View File

@ -1,5 +1,5 @@
#!/bin/sh
source ./build.cfg
. ./build.cfg
set -e
SCRPATH="$( cd "$( dirname $(readlink -nf $0) )" && pwd )"
PATH="$SCRPATH"/bin:"$PATH"