From e57078521f985202ba261acdff9a87044dd49572 Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Tue, 20 Apr 2021 02:23:04 -0700 Subject: configure: use $make * configure: in a few tests, we are calling make as "make" rather than via the $make variable. This fails when "make" isn't GNU Make. --- configure | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'configure') diff --git a/configure b/configure index 47fcb800..0ccd5b7f 100755 --- a/configure +++ b/configure @@ -1131,7 +1131,7 @@ fi # printf "Checking for Apple environment ... " -if [ "$(make conftest.darwin)" = "yes" ] ; then +if [ "$($make conftest.darwin)" = "yes" ] ; then printf "yes\n" darwin_target=y lang_flags="$lang_flags -D_DARWIN_C_SOURCE" @@ -1145,7 +1145,7 @@ fi if ! [ $darwin_target ] ; then printf "Checking for Android environment ... " - if [ "$(make conftest.android)" = "yes" ] ; then + if [ "$($make conftest.android)" = "yes" ] ; then printf "yes\n" android_target=y lang_flags="$lang_flags -D__ANDROID_API__=65535 -D_BSD_SOURCE" @@ -1707,7 +1707,7 @@ if [ $maintainer ] ; then if [ -z "$lex_given" -a -z "$lexname_given" ] ; then for lexname in '$(LEX)' "lex" "flex" "" ; do rm -f lex.yy.c - if make lexname="$lexname" lex.yy.c > /dev/null 2>&1; then + if $make lexname="$lexname" lex.yy.c > /dev/null 2>&1; then break; fi done @@ -1717,7 +1717,7 @@ if [ $maintainer ] ; then fi else rm -f lex.yy.c - if ! make lexname="$lexname" lex.yy.c > /dev/null 2>&1; then + if ! $make lexname="$lexname" lex.yy.c > /dev/null 2>&1; then printf "error\n\n" printf 'values --lexname="%s" --lex="%s" are not working\n\n' "$lexname" "$lex" printf 'A GNU Flex compatible lex is required\n\n' -- cgit v1.2.3