diff options
author | Daniel Price <daniel.price@gmail.com> | 2012-11-19 15:20:13 -0800 |
---|---|---|
committer | Daniel Price <daniel.price@gmail.com> | 2012-11-19 15:20:13 -0800 |
commit | 1af4a119d20cd1f806262f5a951ba0a356da3d8a (patch) | |
tree | 022272e5ac96dd06074b8382ba291b6e9d1b0ae7 | |
parent | ba31ed29c42454d4cd1c1792128ca19944e5a455 (diff) | |
download | crosstool-ng-1af4a119d20cd1f806262f5a951ba0a356da3d8a.tar.gz crosstool-ng-1af4a119d20cd1f806262f5a951ba0a356da3d8a.tar.bz2 crosstool-ng-1af4a119d20cd1f806262f5a951ba0a356da3d8a.zip |
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-common | 2 |
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 90392c8a..a598beca 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 |