From 02abe1f0f808efcf4ac9c1efe7b479dbd6ec3871 Mon Sep 17 00:00:00 2001 From: Amar Takhar Date: Tue, 11 Mar 2008 05:41:14 +0000 Subject: [PATCH] It never ceases to amaze me how badly gawk can munge a perfectly compliant AWK file, die gawk. die: It ate the line endings on lines wrapped using \ instead of keeping the CR's it put everything on one line even though hard CR's were used. Originally committed to SVN as r2012. --- aegisub/bitmaps/genxpm.awk | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/aegisub/bitmaps/genxpm.awk b/aegisub/bitmaps/genxpm.awk index 64bf4070a..12ff21df2 100644 --- a/aegisub/bitmaps/genxpm.awk +++ b/aegisub/bitmaps/genxpm.awk @@ -6,9 +6,9 @@ END { printf(" \ -all: bmp2xpm wxicon_xpm.xpm \ -.PHONY: all bmp2xpm \ -CONVERT ?= convert \ +all: bmp2xpm wxicon_xpm.xpm \n \ +.PHONY: all bmp2xpm \n \ +CONVERT ?= convert \n \ ") printf("wxicon_xpm.xpm: icon.ico\n $(CONVERT) 'icon.ico[2]' wxicon_xpm.xpm\n");