diff options
author | Greg Matheson <lang@ms.chinmin.edu.tw> | 2004-02-10 20:36:33 +0800 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2004-02-10 08:49:12 +0000 |
commit | 770c139a437bb4b020b3675d69351268adca1056 (patch) | |
tree | fda5d3b327d329c4f661ce0e271915ca91d9fadc /win32 | |
parent | 294fc197d80c0afd8dd4f0c2555e1cd231776107 (diff) | |
download | perl-770c139a437bb4b020b3675d69351268adca1056.tar.gz |
Re: [PATCH] Add "Camel" logo icon to perl.exe on Windows
Message-ID: <20040210043633.GA33671687@momotaro>
p4raw-id: //depot/perl@22298
Diffstat (limited to 'win32')
-rw-r--r-- | win32/makefile.mk | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/win32/makefile.mk b/win32/makefile.mk index 87d5c163eb..35ced6cfc8 100644 --- a/win32/makefile.mk +++ b/win32/makefile.mk @@ -554,7 +554,11 @@ $(o).dll: .ENDIF .rc.res: - $(RSC) -i $< -o $@ +.IF "$(CCTYPE)" == "GCC" + $(RSC) --use-temp-file -i $< -o $@ +.ELSE + $(RSC) -i.. $< +.ENDIF # # various targets |