diff mbox

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

Message ID 12f092a95a94bcf76912.1353367250@redfish.dssd.com
State Accepted
Commit 51160d293e1f
Headers show

Commit Message

Daniel Price Nov. 19, 2012, 11:20 p.m. UTC
# 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>


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

Comments

Yann E. MORIN Nov. 19, 2012, 11:42 p.m. UTC | #1
Daniel, All,

Your patch:
    scripts: unquoted variable reference in glibc-eglibc.sh-common

has been applied as: #51160d293e1f
    http://crosstool-ng.org/hg/crosstool-ng/rev/51160d293e1f

Thank you!

Regards,
Yann E. MORIN.



--
For unsubscribe information see http://sourceware.org/lists.html#faq
Yann E. MORIN Nov. 22, 2012, 9:44 p.m. UTC | #2
Daniel, All,

Your patch:
    scripts: unquoted variable reference in glibc-eglibc.sh-common

has been applied on branch 1.17, as: #bd4e143ae476
    http://crosstool-ng.org/hg/crosstool-ng/rev/bd4e143ae476

Thank you!

Regards,
Yann E. MORIN.



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

Patch

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