F-10003: quote install and uninstall paths in makefile.linux

pull/260/head
Chris Conlon 2026-08-17 16:13:42 -06:00
parent 71c7865fa0
commit 498cbb6a05
1 changed files with 5 additions and 5 deletions

View File

@ -77,13 +77,13 @@ lib/wolfcrypt-jni.jar:
ant build-jni-release
install: all lib/wolfcrypt-jni.jar
$(INSTALL) -d $(INSTALL_DIR)/$(LIBDIR)
$(INSTALL) lib/libwolfcryptjni.so $(INSTALL_DIR)/$(LIBDIR)
$(INSTALL) lib/wolfcrypt-jni.jar $(INSTALL_DIR)/$(LIBDIR)
$(INSTALL) -d "$(INSTALL_DIR)/$(LIBDIR)"
$(INSTALL) lib/libwolfcryptjni.so "$(INSTALL_DIR)/$(LIBDIR)"
$(INSTALL) lib/wolfcrypt-jni.jar "$(INSTALL_DIR)/$(LIBDIR)"
uninstall:
rm -f $(INSTALL_DIR)/$(LIBDIR)/libwolfcryptjni.so
rm -f $(INSTALL_DIR)/$(LIBDIR)/wolfcrypt-jni.jar
rm -f "$(INSTALL_DIR)/$(LIBDIR)/libwolfcryptjni.so"
rm -f "$(INSTALL_DIR)/$(LIBDIR)/wolfcrypt-jni.jar"
.PHONY: clean