Alon Bar-Lev has uploaded a new change for review. Change subject: packaging: build: add missing DESTDIR in artifacts target ......................................................................
packaging: build: add missing DESTDIR in artifacts target Change-Id: I4ae987362f9930a9fab89519f86e6081379ccf39 Signed-off-by: Alon Bar-Lev <[email protected]> --- M Makefile 1 file changed, 2 insertions(+), 2 deletions(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/39/17139/1 diff --git a/Makefile b/Makefile index 0fef9b5..0449ddd 100644 --- a/Makefile +++ b/Makefile @@ -302,9 +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)" + install -dm 0755 "$(DESTDIR)$(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)" + install -dm 0755 "$(DESTDIR)$(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 -- To view, visit http://gerrit.ovirt.org/17139 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I4ae987362f9930a9fab89519f86e6081379ccf39 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
