build.sh: fix ${BASE_DIRECTORY} after moving the script

This should have been in commit
328e77aced
This commit is contained in:
Max Kellermann 2018-10-22 23:15:17 +02:00
parent de47d85298
commit 6076938402
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@
set -e
BASE_DIRECTORY=`dirname $0`
BASE_DIRECTORY=`(cd ${BASE_DIRECTORY}; cd ..; pwd)`
BASE_DIRECTORY=`(cd ${BASE_DIRECTORY}; pwd)`
ME=`basename $0`
# FIXME: some components need this (mingwdll), but they shouldn't.