summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Price <daniel.price@gmail.com>2012-11-19 23:20:13 (GMT)
committerDaniel Price <daniel.price@gmail.com>2012-11-19 23:20:13 (GMT)
commit1af4a119d20cd1f806262f5a951ba0a356da3d8a (patch)
tree022272e5ac96dd06074b8382ba291b6e9d1b0ae7
parentba31ed29c42454d4cd1c1792128ca19944e5a455 (diff)
scripts: unquoted variable reference in glibc-eglibc.sh-common
Signed-off-by: Daniel Price <daniel.price@gmail.com> Message-Id: <12f092a95a94bcf76912.1353367250@redfish.dssd.com> Patchwork-Id: 200215
-rw-r--r--scripts/build/libc/glibc-eglibc.sh-common2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build/libc/glibc-eglibc.sh-common b/scripts/build/libc/glibc-eglibc.sh-common
index 90392c8..a598bec 100644
--- a/scripts/build/libc/glibc-eglibc.sh-common
+++ b/scripts/build/libc/glibc-eglibc.sh-common
@@ -460,7 +460,7 @@ do_libc_backend_once() {
# EGLIBC doesn't have a install-{pdf.html}, and older
# versions leave the manuals in the source directory
CT_DoExecLog ALL mkdir -p ${CT_PREFIX_DIR}/share/doc
- if [ ${CT_LIBC_EGLIBC_2_16_or_later} = "y" ]; then
+ if [ "${CT_LIBC_EGLIBC_2_16_or_later}" = "y" ]; then
CT_DoExecLog ALL cp -av manual/*.pdf manual/libc \
${CT_PREFIX_DIR}/share/doc
else