Skip to content
Snippets Groups Projects
Commit 65edf558 authored by Andreas Romeyke's avatar Andreas Romeyke
Browse files

- fixed CI/CD error "unmappable character for encoding"

parent da0ca812
No related branches found
No related tags found
No related merge requests found
Pipeline #4420 passed
...@@ -79,7 +79,7 @@ $(JAR): $(OBJS) ...@@ -79,7 +79,7 @@ $(JAR): $(OBJS)
@cd $(BUILD); ${JAVAPATH}/jar cfvM ../$@ ./* ; cd .. @cd $(BUILD); ${JAVAPATH}/jar cfvM ../$@ ./* ; cd ..
%.class: %.java %.class: %.java
${JAVAPATH}/javac --release ${JAVARELEASE} -g -classpath ${CLASSPATH}:${JUNITCLASSPATH} -Xlint:all $< ${JAVAPATH}/javac -encoding utf-8 --release ${JAVARELEASE} -g -classpath ${CLASSPATH}:${JUNITCLASSPATH} -Xlint:all $<
doc: $(SOURCES) doc: $(SOURCES)
javadoc -d doc/ $^ javadoc -d doc/ $^
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment