diff options
author | Alvaro G. M <alvaro.gamez@hazent.com> | 2014-03-06 09:53:33 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-03-06 18:22:42 +0100 |
commit | f1af0b6ee90f2253d5d37b5bb2b87555eddca59e (patch) | |
tree | dd6ecdcbb4231cc43c1fe2f9f212100e540177c2 | |
parent | 206706efa152cabda15de990c7fb6e5d7bbf44e9 (diff) | |
download | buildroot-f1af0b6ee90f2253d5d37b5bb2b87555eddca59e.tar.gz buildroot-f1af0b6ee90f2253d5d37b5bb2b87555eddca59e.zip |
libxmlrpc: disable parallel build
Although upstream tries to support parallel builds, there are several
dependencies that, if fixed, would end up making the library build
linearly, so in the end there would be no benefit to fix those.
Fixes:
http://autobuild.buildroot.net/results/996/996fc95b302fb6dfc7cd9a468fd395226a36c6c4/
Suggested-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Alvaro G. M. <alvaro.gamez@hazent.com>
Signed-off-by: Alvaro G. M <alvaro.gamez@hazent.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/libxmlrpc/libxmlrpc.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/libxmlrpc/libxmlrpc.mk b/package/libxmlrpc/libxmlrpc.mk index 3d1af7e00a..ef120f96e5 100644 --- a/package/libxmlrpc/libxmlrpc.mk +++ b/package/libxmlrpc/libxmlrpc.mk @@ -12,6 +12,7 @@ LIBXMLRPC_LICENSE_FILES = doc/COPYING LIBXMLRPC_INSTALL_STAGING = YES LIBXMLRPC_DEPENDENCIES = libcurl LIBXMLRPC_CONFIG_SCRIPTS = xmlrpc-c-config +LIBXMLRPC_MAKE = $(MAKE1) LIBXMLRPC_CONF_OPT = \ $(if $(BR2_USE_WCHAR),,ac_cv_header_wchar_h=no) \ |