Added double quotes

Added double quotes to prevent globbing and word splitting.
This commit is contained in:
Ava Barron 2019-10-07 17:02:46 -04:00 committed by GitHub
parent febc31c641
commit dd85166b6c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -5,9 +5,9 @@
export LC_ALL=C
set -e
srcdir="$(dirname $0)"
srcdir="$(dirname "$0")"
cd "$srcdir"
if [ -z ${LIBTOOLIZE} ] && GLIBTOOLIZE="$(command -v glibtoolize)"; then
if [ -z "${LIBTOOLIZE}" ] && GLIBTOOLIZE="$(command -v glibtoolize)"; then
LIBTOOLIZE="${GLIBTOOLIZE}"
export LIBTOOLIZE
fi