mirror of https://gitlab.com/nakst/essence
fixes for non bash shells
This commit is contained in:
parent
7ee62db3de
commit
6568c05e29
|
@ -1,4 +1,4 @@
|
|||
function CompileHarfbuzz() {
|
||||
CompileHarfbuzz() {
|
||||
$CC -c hb-aat-layout.cc -o hb-aat-layout.o
|
||||
$CC -c hb-aat-map.cc -o hb-aat-map.o
|
||||
$CC -c hb-blob.cc -o hb-blob.o
|
||||
|
@ -75,7 +75,7 @@ if [ ! -d "bin/harfbuzz" ]; then
|
|||
|
||||
SED=sed
|
||||
|
||||
if [[ "$OSTYPE" == "darwin"* ]]; then
|
||||
if [ "$OSTYPE" = "darwin"* ]; then
|
||||
SED=gsed
|
||||
fi
|
||||
|
||||
|
|
Loading…
Reference in New Issue