From f39a28b7a967fb45262041ba75990c16b61f21c3 Mon Sep 17 00:00:00 2001 From: Michael Forney Date: Thu, 1 Dec 2016 23:07:03 -0800 Subject: [PATCH] Don't pass -- to printf POSIX says that printf has no options and doesn't have to conform to the utility syntax guidelines (which include -- handling). --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7b57cc9..bff0713 100644 --- a/Makefile +++ b/Makefile @@ -143,7 +143,7 @@ $(BUILD_DIR)/Makefile: | $(BUILD_DIR) ln -sf ../litecross/Makefile $@ $(BUILD_DIR)/config.mak: | $(BUILD_DIR) - printf >$@ -- '%s\n' \ + printf >$@ '%s\n' \ "MUSL_SRCDIR = ../musl-$(MUSL_VER)" \ "GCC_SRCDIR = ../gcc-$(GCC_VER)" \ "BINUTILS_SRCDIR = ../binutils-$(BINUTILS_VER)" \