# HG changeset patch # User Daniel Price # Date 1353459557 28800 # Node ID b8e00eab8f8144e54a3fadf5244838df359808c3 # Parent bd4e143ae476a6cc8f9932f1353da67db07531f6 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 (transplanted from 15cd5dc25929d0ccd0e1f187fe721a1ca0d48919) diff -r bd4e143ae476 -r b8e00eab8f81 scripts/crosstool-NG.sh.in --- a/scripts/crosstool-NG.sh.in Mon Nov 19 15:20:13 2012 -0800 +++ 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