Skip to content

Commit 295933a

Browse files
committed
Adding -j$MAKE_JOBS to make commands were -jX is missing
1 parent e7cea72 commit 295933a

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

recipes/c_igraph/recipe.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ function build_c_igraph() {
4848
fi
4949

5050

51-
try $MAKE
52-
try $MAKE install
51+
try $MAKE -j$MAKE_JOBS
52+
try $MAKE -j$MAKE_JOBS install
5353

5454
pop_arm
5555
touch .built

recipes/libevent/recipe.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ function build_libevent() {
2222

2323
push_arm
2424
try ./configure --build=i686-pc-linux-gnu --host=arm-linux-eabi --prefix=$BUILD_libevent/build/
25-
try make install
25+
try make -j$MAKE_JOBS install
2626
pop_arm
2727
}
2828

recipes/libpq/recipe.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ function build_libpq() {
2929
push_arm
3030

3131
try ./configure --without-readline --host=arm-linux
32-
try make submake-libpq
32+
try make -j$MAKE_JOBS submake-libpq
3333
try cp -a $BUILD_libpq/src/interfaces/libpq/libpq.a $LIBS_PATH
3434

3535
pop_arm

recipes/libsodium/recipe.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ function build_libsodium() {
2323
push_arm
2424

2525
try ./configure --enable-minimal --disable-soname-versions --host="arm-linux-androideabi" --enable-shared
26-
try make
26+
try make -j$MAKE_JOBS
2727

2828
try cp -L $BUILD_libsodium/src/libsodium/.libs/libsodium.so $LIBS_PATH
2929

recipes/libxml2/recipe.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ function build_libxml2() {
2626
--without-modules --without-legacy --without-history --without-debug --without-docbook --without-python
2727
try $SED 's/ runtest\$(EXEEXT) \\/ \\/' Makefile
2828
try $SED 's/ testrecurse\$(EXEEXT)$//' Makefile
29-
try make
29+
try make -j$MAKE_JOBS
3030

3131
pop_arm
3232
}

recipes/libxslt/recipe.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ function build_libxslt() {
3030
try ./configure --build=i686-pc-linux-gnu --host=arm-linux-eabi \
3131
--without-plugins --without-debug --without-python --without-crypto \
3232
--with-libxml-src=$BUILD_libxml2
33-
try make
33+
try make -j$MAKE_JOBS
3434

3535

3636
pop_arm

recipes/libyaml/recipe.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ function build_libyaml() {
2323

2424
# using arm-linux-eabi does not create a shared library
2525
try ./configure --build=i686-pc-linux-gnu --host=arm-linux-androideabi
26-
try make
26+
try make -j$MAKE_JOBS
2727

2828
try cp -L $BUILD_libyaml/src/.libs/libyaml.so $LIBS_PATH
2929

recipes/openssl/recipe.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ function build_openssl() {
2323
push_arm
2424

2525
try ./Configure no-dso no-krb5 linux-armv4
26-
try make build_libs
26+
try make -j$MAKE_JOBS build_libs
2727

2828
pop_arm
2929
}

0 commit comments

Comments
 (0)