summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoman Bolshakov <r.bolshakov@yadro.com>2018-11-06 22:37:38 (GMT)
committerRoman Bolshakov <r.bolshakov@yadro.com>2018-11-07 17:42:04 (GMT)
commit7346d635b3292d516a2aeb283c9a4864cec7cafb (patch)
treeaf857ab8565ad71dd1aa086674111458f79f23b6
parent94e79672619ae0e45cf668d83648d00cf0a65096 (diff)
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>
-rw-r--r--paths.sh.in2
1 files changed, 2 insertions, 0 deletions
diff --git a/paths.sh.in b/paths.sh.in
index ad42916..a9a5ee8 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@"