We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4cd221a commit 6743d17Copy full SHA for 6743d17
1 file changed
Makefile.common
@@ -17,8 +17,10 @@ JAVA_CLASSPATH?=$(TARGET)/classpath/slf4j-api.jar
17
## building OSInfo.java
18
ifeq ("$(wildcard $(OSINFO_PROG))","")
19
$(info Building OSInfo tool)
20
-$(shell mkdir -p $(TARGET)/classpath)
+$(shell mkdir -p $(dir $(JAVA_CLASSPATH)))
21
+ifeq ("$(wildcard $(JAVA_CLASSPATH))","")
22
$(shell curl -L -f -o$(JAVA_CLASSPATH) https://search.maven.org/remotecontent?filepath=org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar)
23
+endif
24
$(shell $(JAVAC) -cp $(JAVA_CLASSPATH) -sourcepath $(SRC) -d lib src/main/java/org/sqlite/util/OSInfo.java)
25
endif
26
0 commit comments