scripts: unquoted variable reference in glibc-eglibc.sh-common
authorDaniel Price <daniel.price@gmail.com>
Mon Nov 19 15:20:13 2012 -0800 (2012-11-19)
changeset 311851160d293e1f
parent 3117 2b64e1b502cd
child 3119 1c56c03b7ed5
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
scripts/build/libc/glibc-eglibc.sh-common
     1.1 --- a/scripts/build/libc/glibc-eglibc.sh-common	Mon Nov 19 11:19:54 2012 +0100
     1.2 +++ b/scripts/build/libc/glibc-eglibc.sh-common	Mon Nov 19 15:20:13 2012 -0800
     1.3 @@ -460,7 +460,7 @@
     1.4              # EGLIBC doesn't have a install-{pdf.html}, and older
     1.5              # versions leave the manuals in the source directory
     1.6              CT_DoExecLog ALL mkdir -p ${CT_PREFIX_DIR}/share/doc
     1.7 -            if [ ${CT_LIBC_EGLIBC_2_16_or_later} = "y" ]; then
     1.8 +            if [ "${CT_LIBC_EGLIBC_2_16_or_later}" = "y" ]; then
     1.9                  CT_DoExecLog ALL cp -av manual/*.pdf manual/libc \
    1.10                      ${CT_PREFIX_DIR}/share/doc
    1.11              else