Alon Bar-Lev has uploaded a new change for review. Change subject: packaging: build: fix parallel make issues ......................................................................
packaging: build: fix parallel make issues Change-Id: I4eede91d86f42b3a6a784bc226a83f2368edfd82 Signed-off-by: Alon Bar-Lev <[email protected]> --- M Makefile 1 file changed, 4 insertions(+), 0 deletions(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/92/17092/1 diff --git a/Makefile b/Makefile index 9292076..0fef9b5 100644 --- a/Makefile +++ b/Makefile @@ -302,7 +302,9 @@ # won't get artifacts of older branches # we should use search MAVEN_OUTPUT_DIR as it may contain # pre-compiled artifacts at different hierarchy. + install -dm 0755 "$(PKG_JBOSS_MODULES)" find "$(MAVEN_OUTPUT_DIR)" -name '*-modules.zip' | grep -v tmp.repos | xargs -n 1 unzip -q -o -d "$(DESTDIR)$(PKG_JBOSS_MODULES)" + install -dm 0755 "$(PKG_EAR_DIR)" find "$(MAVEN_OUTPUT_DIR)" -name '*.ear' -type f | grep -v tmp.repos | xargs -n 1 unzip -q -o -d "$(DESTDIR)$(PKG_EAR_DIR)" # TODO: remove some day @@ -378,6 +380,8 @@ # also remvove the conf/iptables* # install_setup: + install -dm 755 "$(DESTDIR)$(BIN_DIR)" + install -dm 755 "$(DESTDIR)$(DATA_DIR)/conf" install -dm 755 "$(DESTDIR)$(DATA_DIR)/scripts" install -dm 755 "$(DESTDIR)$(DATA_DIR)/scripts/plugins" -- To view, visit http://gerrit.ovirt.org/17092 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I4eede91d86f42b3a6a784bc226a83f2368edfd82 Gerrit-PatchSet: 1 Gerrit-Project: ovirt-engine Gerrit-Branch: master Gerrit-Owner: Alon Bar-Lev <[email protected]> _______________________________________________ Engine-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/engine-patches
