fixed bug in makefile that caused the lipase package to have absolute paths instead of relative paths
This commit is contained in:
parent
8c3a5b0d72
commit
38b5d2c6fb
4
Makefile
4
Makefile
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue