Skip to content

Commit

Permalink
[make] Remove \r from haxelib libpath output
Browse files Browse the repository at this point in the history
Otherwise we end up with the carriage return still being there on
windows.
  • Loading branch information
tobil4sk committed Sep 4, 2024
1 parent 3d5b85f commit 2df5372
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 @@ -118,7 +118,7 @@ haxelib_hxcpp: $(HAXELIB_SRC_PATH)/haxelib_hxb.zip
$(HAXELIB_INTERP) config > /dev/null || $(HAXELIB_INTERP) newrepo
$(HAXELIB_INTERP) path hxcpp > /dev/null || \
($(HAXELIB_INTERP) git hxcpp https://github.com/HaxeFoundation/hxcpp.git && \
hxcpp_path=`$(HAXELIB_INTERP) libpath hxcpp` && \
hxcpp_path=`$(HAXELIB_INTERP) libpath hxcpp | tr -d '\r'` && \
$(CURDIR)/$(HAXE_OUTPUT) --cwd $$hxcpp_path/tools/hxcpp compile.hxml)

# haxelib should depends on haxe, but we don't want to do that...
Expand Down

0 comments on commit 2df5372

Please sign in to comment.