mirror of
https://github.com/chocolate-doom/chocpkg.git
synced 2024-11-10 07:11:39 +00:00
Fix error with unbound variable.
This commit is contained in:
parent
a0ef6b6fac
commit
5c60dcdb4a
1 changed files with 1 additions and 1 deletions
|
@ -104,7 +104,7 @@ setup_build_environment() {
|
||||||
|
|
||||||
# ACLOCAL_PATH is a special case: we include the aclocal paths from both
|
# ACLOCAL_PATH is a special case: we include the aclocal paths from both
|
||||||
# target and native, so that it is possible to get the pkg-config macros.
|
# target and native, so that it is possible to get the pkg-config macros.
|
||||||
ACLOCAL_PATH="$NATIVE_INSTALL_DIR/share/aclocal:$ACLOCAL_PATH"
|
ACLOCAL_PATH="$NATIVE_INSTALL_DIR/share/aclocal:${ACLOCAL_PATH:-}"
|
||||||
if [ "$PACKAGE_TYPE" = "target" ]; then
|
if [ "$PACKAGE_TYPE" = "target" ]; then
|
||||||
ACLOCAL_PATH="$INSTALL_DIR/share/aclocal:${ACLOCAL_PATH:-}"
|
ACLOCAL_PATH="$INSTALL_DIR/share/aclocal:${ACLOCAL_PATH:-}"
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue