From c9affe9aeb0edf33d5d0f567ef9168d3b70906e8 Mon Sep 17 00:00:00 2001 From: Amar Takhar Date: Mon, 4 May 2009 08:06:26 +0000 Subject: [PATCH] Sigh, make gawk happy, I despise gawk someone please get rid of it forever. Originally committed to SVN as r2900. --- aegisub/scripts/unix-gen-xpm.awk | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/aegisub/scripts/unix-gen-xpm.awk b/aegisub/scripts/unix-gen-xpm.awk index 3913cd6af..88f67e801 100644 --- a/aegisub/scripts/unix-gen-xpm.awk +++ b/aegisub/scripts/unix-gen-xpm.awk @@ -15,9 +15,7 @@ CONVERT ?= %s \n \ # I direct them to coders/xpm.c:734 in ImageMagick 6.5.1 for (v in image) { printf("%s_xpm.xpm: %s\n", v, image[v]) - printf(" $(CONVERT) -transparent \"#c0c0c0\" %s xpm:- \\\ - | sed \"2 s/^static char \\*xpm__\\[\\] =/const char \\*"v"_xpm\\[\\] =/\" \\\ - > %s_xpm.xpm\n\n", image[v], v) + printf(" $(CONVERT) -transparent \"#c0c0c0\" %s xpm:- | sed \"2 s/^static char \\*xpm__\\[\\] =/const char \\*"v"_xpm\\[\\] =/\" > %s_xpm.xpm\n\n", image[v], v) } printf("bmp2xpm:")