[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 <joe@roback.cc>

git-svn-id: svn://svn.openwrt.org/openwrt/packages@25435 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
florian 2011-02-09 20:36:27 +00:00
parent 9a6aa7d976
commit d125706f97

View File

@ -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