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)
commit6ea41bead227cd5a9727fb2dd5d5f99233f8578e (patch)
tree83cd874f00a5a336c96c64af192295b0f8a96981
parent7de36f89597f3b6ef904a173a3bc77ae6df655bf (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 (transplanted from 51160d293e1fdbd69305310d3b34aa0054ce2399)
-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