Skip to content

Commit dd85166

Browse files
authored
Added double quotes
Added double quotes to prevent globbing and word splitting.
1 parent febc31c commit dd85166

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

autogen.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55

66
export LC_ALL=C
77
set -e
8-
srcdir="$(dirname $0)"
8+
srcdir="$(dirname "$0")"
99
cd "$srcdir"
10-
if [ -z ${LIBTOOLIZE} ] && GLIBTOOLIZE="$(command -v glibtoolize)"; then
10+
if [ -z "${LIBTOOLIZE}" ] && GLIBTOOLIZE="$(command -v glibtoolize)"; then
1111
LIBTOOLIZE="${GLIBTOOLIZE}"
1212
export LIBTOOLIZE
1313
fi

0 commit comments

Comments
 (0)