From 2df537245406662393c2bcc8336c4de001734fd5 Mon Sep 17 00:00:00 2001 From: Tobiasz Laskowski Date: Mon, 2 Sep 2024 20:13:36 +0100 Subject: [PATCH] [make] Remove \r from haxelib libpath output Otherwise we end up with the carriage return still being there on windows. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9750aaf40ee..567410f8c2a 100644 --- a/Makefile +++ b/Makefile @@ -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...