From: florian Date: Wed, 9 Feb 2011 20:36:27 +0000 (+0000) Subject: [package] libjpeg: fix parallel build X-Git-Url: http://207.154.207.93/?a=commitdiff_plain;h=d125706f9783b04202ef21a6bfcda60f7e6c5ca8;p=packages.git [package] libjpeg: fix parallel build For parallel builds, make targets that build need to be separated from targets that install ;-) Signed-off-by: Joe Roback git-svn-id: svn://svn.openwrt.org/openwrt/packages@25435 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- 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