This is the mail archive of the crossgcc@sourceware.org mailing list for the crossgcc project.

See crosstool-NG for lots more information.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] scripts: unquoted variable reference in glibc-eglibc.sh-common


# HG changeset patch
# User Daniel Price <daniel.price@gmail.com>
# Date 1353367213 28800
# Node ID 12f092a95a94bcf76912b5d4f7d69431492f3c5a
# Parent  1c68438f44f74e7fcf761838271f1e4d156ceeda
scripts: unquoted variable reference in glibc-eglibc.sh-common

Signed-off-by: Daniel Price <daniel.price@gmail.com>

diff -r 1c68438f44f7 -r 12f092a95a94 scripts/build/libc/glibc-eglibc.sh-common
--- a/scripts/build/libc/glibc-eglibc.sh-common	Fri Nov 16 14:59:27 2012 +0100
+++ b/scripts/build/libc/glibc-eglibc.sh-common	Mon Nov 19 15:20:13 2012 -0800
@@ -460,7 +460,7 @@
             # 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

--
For unsubscribe information see http://sourceware.org/lists.html#faq


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]