# HG changeset patch # User Daniel Price # Date 1353459557 28800 # Node ID 15cd5dc25929d0ccd0e1f187fe721a1ca0d48919 # Parent e097000b5420234168203460dae6ee13560e565e scripts: fail on ':' in paths Signed-off-by: Daniel Price [yann.morin.1998@free.fr: split original patch for self-contained changes] Signed-off-by: "Yann E. MORIN" Message-Id: <163f86b5216fc08c672a.1353459722@nipigon.dssd.com> Patchwork-Id: 200536 diff -r e097000b5420 -r 15cd5dc25929 scripts/crosstool-NG.sh.in --- a/scripts/crosstool-NG.sh.in Mon Nov 19 22:13:11 2012 +0100 +++ b/scripts/crosstool-NG.sh.in Tue Nov 20 16:59:17 2012 -0800 @@ -66,6 +66,9 @@ *" "*) CT_Abort "'CT_${d}_DIR'='${dir}' contains a space in it.\nDon't use spaces in paths, it breaks things." ;; + *:*) + CT_Abort "'CT_${d}_DIR'='${dir}' contains a colon in it.\nDon't use colons in paths, it breaks things." + ;; esac done