From: Steve Hay Date: Mon, 14 May 2007 16:22:04 +0000 (+0000) Subject: Older versions of windres interpret "-I" as the input format, X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=a4a4db2cfa16fb7b8c8ec0c8874b653d8fe0dbba;p=p5sagit%2Fp5-mst-13.2.git Older versions of windres interpret "-I" as the input format, so use the long option name "--include-dir" instead. p4raw-id: //depot/perl@31213 --- diff --git a/win32/makefile.mk b/win32/makefile.mk index 6698bf7..6b1f38b 100644 --- a/win32/makefile.mk +++ b/win32/makefile.mk @@ -679,7 +679,7 @@ $(o).dll: .rc.res: .IF "$(CCTYPE)" == "GCC" - $(RSC) --use-temp-file -I . -I .. -O COFF -i $< -o $@ + $(RSC) --use-temp-file --include-dir=. --include-dir=.. -O COFF -i $< -o $@ .ELSE $(RSC) -i.. $< .ENDIF