From: Noah Watkins Date: Sun, 25 Jan 2015 19:45:48 +0000 (-0800) Subject: install-deps: fix LC_ALL setting X-Git-Tag: v0.93~191^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=ca1d21e392a8ca0c2d2db515eead6a967728ee1e;p=ceph.git install-deps: fix LC_ALL setting On my box LC_ALL=C# includes the '#' in the value without a space between C and '#' and things go completely bonkers. Signed-off-by: Noah Watkins --- diff --git a/install-deps.sh b/install-deps.sh index 7eab02949b1a..b001a3327baf 100755 --- a/install-deps.sh +++ b/install-deps.sh @@ -17,7 +17,7 @@ mkdir -p $DIR if test $(id -u) != 0 ; then SUDO=sudo fi -export LC_ALL=C# the following is vulnerable to i18n +export LC_ALL=C # the following is vulnerable to i18n case $(lsb_release -si) in Ubuntu|Debian|Devuan) $SUDO apt-get install -y dpkg-dev