Skip to content

Commit 3352da8

Browse files
Add "export LC_ALL=C" to all shell scripts
1 parent a607d23 commit 3352da8

26 files changed

+34
-1
lines changed

autogen.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
# Distributed under the MIT software license, see the accompanying
44
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
55

6+
export LC_ALL=C
67
set -e
78
srcdir="$(dirname $0)"
89
cd "$srcdir"

contrib/devtools/gen-manpages.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#!/bin/bash
22

3+
export LC_ALL=C
34
TOPDIR=${TOPDIR:-$(git rev-parse --show-toplevel)}
45
BUILDDIR=${BUILDDIR:-$TOPDIR}
56

contrib/gitian-build.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
# Distributed under the MIT software license, see the accompanying
44
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
55

6+
export LC_ALL=C
67
# What to do
78
sign=false
89
verify=false

contrib/install_db4.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
# Install libdb4.8 (Berkeley DB).
44

5+
export LC_ALL=C
56
set -e
67

78
if [ -z "${1}" ]; then

contrib/macdeploy/detached-sig-apply.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
# Distributed under the MIT software license, see the accompanying
44
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
55

6+
export LC_ALL=C
67
set -e
78

89
UNSIGNED="$1"

contrib/macdeploy/detached-sig-create.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
# Distributed under the MIT software license, see the accompanying
44
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
55

6+
export LC_ALL=C
67
set -e
78

89
ROOTDIR=dist

contrib/macdeploy/extract-osx-sdk.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
# Distributed under the MIT software license, see the accompanying
44
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
55

6+
export LC_ALL=C
67
set -e
78

89
INPUTFILE="Xcode_7.3.1.dmg"

contrib/qos/tc.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
# Distributed under the MIT software license, see the accompanying
33
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
44

5+
export LC_ALL=C
56
#network interface on which to limit traffic
67
IF="eth0"
78
#limit of the network interface in question

contrib/verify-commits/gpg.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
# Distributed under the MIT software license, see the accompanying
44
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
55

6+
export LC_ALL=C
67
INPUT=$(cat /dev/stdin)
78
VALID=false
89
REVSIG=false

contrib/verify-commits/pre-push-hook.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
# Distributed under the MIT software license, see the accompanying
44
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
55

6+
export LC_ALL=C
67
if ! [[ "$2" =~ ^(git@)?(www.)?github.com(:|/)bitcoin/bitcoin(.git)?$ ]]; then
78
exit 0
89
fi

0 commit comments

Comments
 (0)