From: Colin Watson Date: Thu, 10 Mar 2005 16:28:11 +0000 (+0000) Subject: Remove unnecessary -l flag. X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~cjwatson/git?p=bin.git;a=commitdiff_plain;h=1c43ad2353f8884cb4178774e10496d16f3dca7b Remove unnecessary -l flag. --- diff --git a/locale-exists b/locale-exists index 05c7e5b..1c02107 100755 --- a/locale-exists +++ b/locale-exists @@ -5,4 +5,4 @@ set -e # arguments. Exits zero if the given locale exists, and non-zero otherwise. [ "$1" ] && export LANG="$1" -PERL_BADLANG=0 perl -MPOSIX -le 'exit 1 unless setlocale(LANG, "")' +PERL_BADLANG=0 perl -MPOSIX -e 'exit 1 unless setlocale(LANG, "")'