summaryrefslogtreecommitdiff
path: root/libre-testing/systemd/locale.sh
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@parabola.nu>2014-01-08 04:54:33 -0200
committerAndré Fabian Silva Delgado <emulatorman@parabola.nu>2014-01-08 04:54:33 -0200
commitaf366e4fc114db59a7852a12ca186a99c68e0d58 (patch)
tree75b6261d8b8eb079e8d332481a864c1f458e6178 /libre-testing/systemd/locale.sh
parent1e825f795deba420c569f9c318a8cd94927b1b0b (diff)
downloadabslibre-af366e4fc114db59a7852a12ca186a99c68e0d58.tar.gz
abslibre-af366e4fc114db59a7852a12ca186a99c68e0d58.tar.bz2
abslibre-af366e4fc114db59a7852a12ca186a99c68e0d58.zip
remove more deprecated packages
Diffstat (limited to 'libre-testing/systemd/locale.sh')
-rw-r--r--libre-testing/systemd/locale.sh59
1 files changed, 0 insertions, 59 deletions
diff --git a/libre-testing/systemd/locale.sh b/libre-testing/systemd/locale.sh
deleted file mode 100644
index 11f1bbbee..000000000
--- a/libre-testing/systemd/locale.sh
+++ /dev/null
@@ -1,59 +0,0 @@
-#!/bin/sh
-
-if [ ! -r /etc/locale.conf ]; then
- return
-fi
-
-. /etc/locale.conf
-
-if [ "${LANG+x}" = 'x' ]; then
- export LANG
-fi
-
-if [ "${LC_CTYPE+x}" = 'x' ]; then
- export LC_CTYPE
-fi
-
-if [ "${LC_NUMERIC+x}" = 'x' ]; then
- export LC_NUMERIC
-fi
-
-if [ "${LC_TIME+x}" = 'x' ]; then
- export LC_TIME
-fi
-
-if [ "${LC_COLLATE+x}" = 'x' ]; then
- export LC_COLLATE
-fi
-
-if [ "${LC_MONETARY+x}" = 'x' ]; then
- export LC_MONETARY
-fi
-
-if [ "${LC_MESSAGES+x}" = 'x' ]; then
- export LC_MESSAGES
-fi
-
-if [ "${LC_PAPER+x}" = 'x' ]; then
- export LC_PAPER
-fi
-
-if [ "${LC_NAME+x}" = 'x' ]; then
- export LC_NAME
-fi
-
-if [ "${LC_ADDRESS+x}" = 'x' ]; then
- export LC_ADDRESS
-fi
-
-if [ "${LC_TELEPHONE+x}" = 'x' ]; then
- export LC_TELEPHONE
-fi
-
-if [ "${LC_MEASUREMENT+x}" = 'x' ]; then
- export LC_MEASUREMENT
-fi
-
-if [ "${LC_IDENTIFICATION+x}" = 'x' ]; then
- export LC_IDENTIFICATION
-fi