fixed bug in makefile that caused the lipase package to have absolute paths instead of relative paths

This commit is contained in:
Guillaume Raffy 2019-10-07 12:05:25 +02:00
parent 8c3a5b0d72
commit 38b5d2c6fb
1 changed files with 3 additions and 1 deletions

View File

@ -63,7 +63,9 @@ install_ij_opencv:
$(PACKAGE_FILE_PATH): $(BUILD_ROOT_PATH)/jars/Lib/fr.univ-rennes1.ipr.lipase.lib.jar
mkdir -p $(BUILD_ROOT_PATH)/plugins/Ipr ; \
rsync -a ./src/ij-plugins/Ipr/ $(BUILD_ROOT_PATH)/plugins/Ipr/ ; \
zip -r $(PACKAGE_FILE_PATH) $(BUILD_ROOT_PATH)
pushd $(BUILD_ROOT_PATH) ; \
zip -r $(PACKAGE_FILE_PATH) * ; \
popd
.PHONY: package
package: $(PACKAGE_FILE_PATH)