Commit c570bf26 authored by Axel Kohlmeyer's avatar Axel Kohlmeyer
Browse files

enforce C or POSIX locale in all shell scripts and turn of enforced global grep options

parent a0592d1b
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -3,6 +3,10 @@

mode=$1

# enforce using portable C locale
LC_ALL=C
export LC_ALL

# arg1 = file, arg2 = file it depends on

action () {
+4 −0
Original line number Diff line number Diff line
@@ -3,6 +3,10 @@

mode=$1

# enforce using portable C locale
LC_ALL=C
export LC_ALL

# arg1 = file, arg2 = file it depends on

action () {
+4 −0
Original line number Diff line number Diff line
# Depend.sh = Install/unInstall files due to package dependencies
# this script is invoked after any package is installed/uninstalled

# enforce using portable C locale
LC_ALL=C
export LC_ALL

# all parent/child package dependencies should be listed below
# parent package = has files that files in another package derive from
# child package = has files that derive from files in another package
+4 −0
Original line number Diff line number Diff line
@@ -3,6 +3,10 @@

mode=$1

# enforce using portable C locale
LC_ALL=C
export LC_ALL

# arg1 = file, arg2 = file it depends on

action () {
+4 −0
Original line number Diff line number Diff line
@@ -7,6 +7,10 @@

mode=$1

# enforce using portable C locale
LC_ALL=C
export LC_ALL

# arg1 = file, arg2 = file it depends on

action () {
Loading