Skip to content

Commit 03d3f92

Browse files
really fix the syntax this time
thanks mauke and khw!
1 parent 853e80a commit 03d3f92

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hints/darwin.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -373,7 +373,7 @@ ccflags="$ccflags -DHAS_BROKEN_LANGINFO_CODESET"
373373

374374
# Get: "Assertion failed: (p->val == key), function lookup_substsearch, file
375375
# collate.c, line 596."
376-
if [ "$darwin_major" -ge 24 && "$perl_revision" -ge 5 -a ( "$perl_version" -ge 42 -o ( "$perl_version" -eq 41 -a "$perl_subversion" -ge 11 ) ]; then
376+
if test "$darwin_major" -ge 24 && test "$perl_revision" -ge 5 && ( test "$perl_version" -ge 42 || ( test "$perl_version" -eq 41 && test "$perl_subversion" -ge 11 ) ); then
377377
ccflags="$ccflags -DNO_LOCALE_COLLATE"
378378
fi
379379

0 commit comments

Comments
 (0)