Set LC_ALL instead of LANG when creating harfbuzz.def
authorBehdad Esfahbod <behdad@behdad.org>
Wed, 8 Feb 2017 22:33:28 +0000 (14:33 -0800)
committerBehdad Esfahbod <behdad@behdad.org>
Wed, 8 Feb 2017 22:33:28 +0000 (14:33 -0800)
Hopefully fixes Travis faliure?
https://github.com/behdad/harfbuzz/pull/413#issuecomment-278481882
https://travis-ci.org/khaledhosny/harfbuzz/jobs/199785332#L1065

src/Makefile.am

index d7420a0..e322d56 100644 (file)
@@ -218,7 +218,7 @@ harfbuzz.def: $(HBHEADERS) $(HBNODISTHEADERS)
        (cat $^ || echo 'hb_ERROR ()' ) | \
        $(EGREP) '^hb_.* \(' | \
        sed -e 's/ (.*//' | \
-       LANG=C sort; \
+       LC_ALL=C sort; \
        echo LIBRARY libharfbuzz-0.dll; \
        ) >"$@"
        @ ! grep -q hb_ERROR "$@" \