Codebase list orafce / 8e5574d
debian/tests/installcheck: Use locale_gen from postgresql-common 159. Christoph Berg 9 years ago
2 changed file(s) with 8 addition(s) and 12 deletion(s). Raw diff Collapse all Expand all
0 orafce (3.0.6-4) UNRELEASED; urgency=medium
1
2 * debian/tests/installcheck: Use locale_gen from postgresql-common 159.
3
4 -- Christoph Berg <myon@debian.org> Fri, 18 Jul 2014 13:41:01 +0300
5
06 orafce (3.0.6-3) unstable; urgency=medium
17
28 * Set team as Maintainer.
11
22 set -e
33
4 case $(lsb_release -is) in
5 Debian)
6 if ! grep -Fwq "en_US.UTF-8 UTF-8" /etc/locale.gen; then
7 echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen
8 locale-gen
9 fi
10 ;;
11 Ubuntu)
12 locale-gen en_US.UTF-8
13 ;;
14 esac
15
164 # to_multi_byte needs English, and UTF-8
5 . /usr/share/postgresql-common/pgcommon.sh
6 locale_gen en_US.UTF-8 UTF-8
177 export LC_ALL=en_US.utf8
188
199 for v in $(pg_buildext supported-versions); do