Provide more overrides for make

glibc's configure script looks for make in the following order:
  gnumake gmake make

but crosstool-ng has an override only for make. So glibc picks up
gnumake from system and fails to proceed with the build because system
make is very old.

It'd more reliable if we also override gnumake and gmake.

Signed-off-by: Roman Bolshakov <r.bolshakov@yadro.com>
This commit is contained in:
Roman Bolshakov 2018-11-07 01:37:38 +03:00
parent 94e7967261
commit 7346d635b3

View File

@ -2,6 +2,8 @@ export install="@INSTALL@"
export bash="@BASH_SHELL@"
export awk="@AWK@"
export grep="@GREP@"
export gmake="@MAKE@"
export gnumake="@MAKE@"
export make="@MAKE@"
export sed="@SED@"
export libtool="@LIBTOOL@"