From 9953393593e885d981331a2e01bc9f2c868b939a Mon Sep 17 00:00:00 2001 From: Gatis Paeglis Date: Mon, 6 May 2013 21:33:57 +0200 Subject: Make the configure script to accept "-no-harfbuzz" switch ./configure -h lists "-no-harfbuzz" as a valid option, configuring with this switch gives an error message: "-no-harfbuzz: invalid command-line switch" Change-Id: I77aa68d17805170189150198dc9abea5f8cfa5c2 Reviewed-by: Oswald Buddenhagen --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure') diff --git a/configure b/configure index 9c86fa1e5d..e112999508 100755 --- a/configure +++ b/configure @@ -1409,7 +1409,7 @@ while [ "$#" -gt 0 ]; do OPT_OBSOLETE_HOST_ARG=yes ;; harfbuzz) - if [ "$BUILD_ON_MAC" = "yes" ] && [ "$VAL" = "yes" ]; then + if ([ "$BUILD_ON_MAC" = "yes" ] && [ "$VAL" = "yes" ]) || [ "$VAL" = "no" ]; then CFG_MAC_HARFBUZZ="$VAL" else UNKNOWN_OPT=yes -- cgit v1.2.3