Przeglądaj źródła

Fix newline in make include since it's used for scripting

Streetwalrus Einstein 10 lat temu
rodzic
commit
1c33ea9892
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      rules.mk

+ 1 - 1
rules.mk

@@ -35,7 +35,7 @@ format:
 	@clang-format -i -style=file $(SRCS_C) $(SRCS_CPP) $(wildcard $(addsuffix /*.h,$(INCLUDE)))
 
 include:
-	@echo $(addprefix -I ,$(INCLUDE))
+	@echo -n $(addprefix -I ,$(INCLUDE))
 
 run: all
 	@echo "Sending $(EXE) to calculator"