diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2021-04-20 02:23:04 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-04-20 02:23:04 -0700 |
commit | e57078521f985202ba261acdff9a87044dd49572 (patch) | |
tree | 8c3de1282b4157fcc4c093a4d7ab675ca2ec5a22 /configure | |
parent | 8994babc7c49d3a118bb8341549fef209a21dcc2 (diff) | |
download | txr-e57078521f985202ba261acdff9a87044dd49572.tar.gz txr-e57078521f985202ba261acdff9a87044dd49572.tar.bz2 txr-e57078521f985202ba261acdff9a87044dd49572.zip |
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.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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' |