From: Steven Penny Date: Sat, 7 Jan 2017 21:41:10 +0000 (-0600) Subject: Makefile: POSIX windres X-Git-Tag: v2.12.0-rc0~63^2~1 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/7c44b33f8b67cc6737caa0b812dbd963ca8bbb00?ds=inline;hp=--cc Makefile: POSIX windres When environment variable POSIXLY_CORRECT is set, the "input -o output" syntax is not supported. http://cygwin.com/ml/cygwin/2017-01/msg00036.html Use "-i input -o output" syntax instead. Signed-off-by: Steven Penny Acked-by: Johannes Schindelin Signed-off-by: Junio C Hamano --- 7c44b33f8b67cc6737caa0b812dbd963ca8bbb00 diff --git a/Makefile b/Makefile index d861bd9985..a2a1212504 100644 --- a/Makefile +++ b/Makefile @@ -1816,7 +1816,7 @@ $(SCRIPT_LIB) : % : %.sh GIT-SCRIPT-DEFINES git.res: git.rc GIT-VERSION-FILE $(QUIET_RC)$(RC) \ $(join -DMAJOR= -DMINOR=, $(wordlist 1,2,$(subst -, ,$(subst ., ,$(GIT_VERSION))))) \ - -DGIT_VERSION="\\\"$(GIT_VERSION)\\\"" $< -o $@ + -DGIT_VERSION="\\\"$(GIT_VERSION)\\\"" -i $< -o $@ # This makes sure we depend on the NO_PERL setting itself. $(SCRIPT_PERL_GEN): GIT-BUILD-OPTIONS