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 | 6ea41bead227cd5a9727fb2dd5d5f99233f8578e (patch) | |
tree | 83cd874f00a5a336c96c64af192295b0f8a96981 | |
parent | 7de36f89597f3b6ef904a173a3bc77ae6df655bf (diff) | |
download | crosstool-ng-6ea41bead227cd5a9727fb2dd5d5f99233f8578e.tar.gz crosstool-ng-6ea41bead227cd5a9727fb2dd5d5f99233f8578e.tar.bz2 crosstool-ng-6ea41bead227cd5a9727fb2dd5d5f99233f8578e.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
(transplanted from 51160d293e1fdbd69305310d3b34aa0054ce2399)
-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 |