diff options
author | Roman Bolshakov <r.bolshakov@yadro.com> | 2018-11-07 01:37:38 +0300 |
---|---|---|
committer | Roman Bolshakov <r.bolshakov@yadro.com> | 2018-11-07 20:42:04 +0300 |
commit | 7346d635b3292d516a2aeb283c9a4864cec7cafb (patch) | |
tree | af857ab8565ad71dd1aa086674111458f79f23b6 /paths.sh.in | |
parent | 94e79672619ae0e45cf668d83648d00cf0a65096 (diff) | |
download | crosstool-ng-7346d635b3292d516a2aeb283c9a4864cec7cafb.tar.gz crosstool-ng-7346d635b3292d516a2aeb283c9a4864cec7cafb.tar.bz2 crosstool-ng-7346d635b3292d516a2aeb283c9a4864cec7cafb.zip |
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>
Diffstat (limited to 'paths.sh.in')
-rw-r--r-- | paths.sh.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/paths.sh.in b/paths.sh.in index ad42916d..a9a5ee80 100644 --- a/paths.sh.in +++ b/paths.sh.in @@ -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@" |