We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d708951 commit 281e834Copy full SHA for 281e834
getarch.c
@@ -1930,15 +1930,15 @@ printf("ELF_VERSION=2\n");
1930
1931
#ifdef MAKE_NB_JOBS
1932
#if MAKE_NB_JOBS > 0
1933
- printf("MAKE += -j %d\n", MAKE_NB_JOBS);
+ printf("MAKEFLAGS += -j %d\n", MAKE_NB_JOBS);
1934
#else
1935
// Let make use parent -j argument or -j1 if there
1936
// is no make parent
1937
#endif
1938
#elif NO_PARALLEL_MAKE==1
1939
- printf("MAKE += -j 1\n");
+ printf("MAKEFLAGS += -j 1\n");
1940
1941
- printf("MAKE += -j %d\n", get_num_cores());
+ printf("MAKEFLAGS += -j %d\n", get_num_cores());
1942
1943
1944
break;
0 commit comments