Build system: Use '. ' instead of the 'source' shell builtin.
This commit is contained in:
parent
e42b714458
commit
6edba5dad4
4 changed files with 3 additions and 4 deletions
|
@ -1,5 +1,4 @@
|
|||
#!/bin/sh
|
||||
source ./build.cfg
|
||||
./build_engine.sh
|
||||
./get_gamepacks.sh
|
||||
./build_game.sh
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#!/bin/sh
|
||||
source ./build.cfg
|
||||
. ./build.cfg
|
||||
|
||||
mv_wsfile()
|
||||
{
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#!/bin/sh
|
||||
source ./build.cfg
|
||||
. ./build.cfg
|
||||
set -e
|
||||
|
||||
FTE_MAKEFILE=./src/engine/engine/Makefile
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#!/bin/sh
|
||||
source ./build.cfg
|
||||
. ./build.cfg
|
||||
set -e
|
||||
SCRPATH="$( cd "$( dirname $(readlink -nf $0) )" && pwd )"
|
||||
PATH="$SCRPATH"/bin:"$PATH"
|
||||
|
|
Loading…
Reference in a new issue