Skip to content

Commit

Permalink
jdeps sometimes, but not always, gives us an extra newline on its
Browse files Browse the repository at this point in the history
output. We actaully do need to strip the newline from the end, or the
call to jlink gets a newline in the middle and runs without all its
arguments.
  • Loading branch information
uckelman committed Jul 4, 2020
1 parent 8276d28 commit 06fd39f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ $(TMPDIR)/VASSAL.exe: fast-compile $(TMPDIR)

$(TMPDIR)/module_deps: $(LIBDIR)/Vengine.jar $(TMPDIR)
echo -n jdk.crypto.ec, >$@
$(JDEPS) --ignore-missing-deps --print-module-deps $(LIBDIR)/*.jar >>$@
$(JDEPS) --ignore-missing-deps --print-module-deps $(LIBDIR)/*.jar | tr -d '\n' >>$@

#dist/windows/VASSAL.ico:
# convert -bordercolor Transparent -border 1x1 src/icons/22x22/VASSAL.png $(TMPDIR)/VASSAL-24.png
Expand Down

0 comments on commit 06fd39f

Please sign in to comment.