diff options
author | Antonio Nikishaev <[email protected]> | 2019-02-20 14:35:23 +0400 |
---|---|---|
committer | Antonio Nikishaev <[email protected]> | 2019-02-20 15:40:12 +0400 |
commit | 1985e827122e84f2d323a493112bded76fc5e4f1 (patch) | |
tree | faf7a6ca2e848d9d69895cb58cddcf8a7fbfed75 | |
parent | fbaa9dbb0994d71e801e9fba8236887923aa0cf8 (diff) | |
download | otp-1985e827122e84f2d323a493112bded76fc5e4f1.tar.gz otp-1985e827122e84f2d323a493112bded76fc5e4f1.tar.bz2 otp-1985e827122e84f2d323a493112bded76fc5e4f1.zip |
Revert "Fix a particular sed invocation in otp_build"
This reverts commit c8544cf07399555b61d84174e0887966f982deea.
-rwxr-xr-x | otp_build | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -317,7 +317,7 @@ do_autoconf () echo "=== running autoconf in $d" ( cd "$d" && autoconf ) || exit 1 - chdr=`cat "$file" | LC_CTYPE=C sed -n "s|.*\(AC_CONFIG_HEADER\).*|\1|p"` + chdr=`cat "$file" | sed -n "s|.*\(AC_CONFIG_HEADER\).*|\1|p"` [ "$chdr" = "AC_CONFIG_HEADER" ] || continue echo "=== running autoheader in $d" ( cd "$d" && autoheader ) || exit 1 |