From b99424aaaa5beb1c9cf7a1c0c183aa54bed677e4 Mon Sep 17 00:00:00 2001 From: Florian Fainelli Date: Wed, 9 Feb 2011 20:36:27 +0000 Subject: [PATCH] libjpeg: fix parallel build For parallel builds, make targets that build need to be separated from targets that install ;-) Signed-off-by: Joe Roback SVN-Revision: 25435 --- libs/jpeg/Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/libs/jpeg/Makefile b/libs/jpeg/Makefile index ab940ca61..142bf9ac0 100644 --- a/libs/jpeg/Makefile +++ b/libs/jpeg/Makefile @@ -57,7 +57,11 @@ define Build/Compile $(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR) \ prefix="$(PKG_INSTALL_DIR)/usr" \ exec_prefix="$(PKG_INSTALL_DIR)/usr" \ - all install install-headers install-lib + all + $(MAKE) -C $(PKG_BUILD_DIR) \ + prefix="$(PKG_INSTALL_DIR)/usr" \ + exec_prefix="$(PKG_INSTALL_DIR)/usr" \ + install install-headers install-lib endef define Build/InstallDev -- 2.30.2