diff options
author | Heiko Schlittermann (HS12-RIPE) <hs@schlittermann.de> | 2018-03-10 01:51:20 +0100 |
---|---|---|
committer | Heiko Schlittermann (HS12-RIPE) <hs@schlittermann.de> | 2018-03-10 01:51:20 +0100 |
commit | 120854c10cf350dc2b18bbbbb17fb0b50af91044 (patch) | |
tree | a8274a1aa289642c62e35164237d0e346a2d2d0b /src | |
parent | 06167f943a0b4a9999a5128e118a05c3079abb9f (diff) |
Do not use bashism in /bin/sh scrit (Bug 2249)
Diffstat (limited to 'src')
-rwxr-xr-x | src/scripts/Configure-Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/scripts/Configure-Makefile b/src/scripts/Configure-Makefile index 1e9ff421d..7e0bf38db 100755 --- a/src/scripts/Configure-Makefile +++ b/src/scripts/Configure-Makefile @@ -1,5 +1,6 @@ #! /bin/sh -export LC_ALL=C +LC_ALL=C +export LC_ALL # Shell script to build Makefile in a build directory. It must be called # from inside the directory. It does its own checking of when to rebuild; it |