diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-04-27 11:56:44 -0400 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-04-27 11:56:44 -0400 |
commit | 87b2336372d74dcb29de5495c6c42d012883746b (patch) | |
tree | 1b3ff262c06c71bb10492ec0411193b90fbf205e | |
parent | c51ba815d0b0f7a3d98889bc5ee13df6436b3c23 (diff) |
official-2013/optimized-text/Makefile: fix
-rw-r--r-- | optimized-text/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/optimized-text/Makefile b/optimized-text/Makefile index 2fb555b..b7c2def 100644 --- a/optimized-text/Makefile +++ b/optimized-text/Makefile @@ -2,9 +2,9 @@ # ImageMagick: doesn't support transparency #SVG2PNG = convert $1 -format png $(if $3,-resize $3x)$(if $4,$4) $(if $5,-bacground $5) $2 # librsvg: doesn't support <style> element -SVG2PNG = rsvg-convert $1 -o $2 $(if $3,-w $3) $(if $4,-h $4) $(if $5,--background-color=$5) +#SVG2PNG = rsvg-convert $1 -o $2 $(if $3,-w $3) $(if $4,-h $4) $(if $5,--background-color=$5) # Inkscape: messes up gradients -#SVG2PNG = inkscape $1 --export-png $2 $(if $3,-w $3) $(if $4,-h $4) $(if $5,-b '$5') +SVG2PNG = inkscape $1 --export-png $2 $(if $3,-w $3) $(if $4,-h $4) $(if $5,-b '$5') # PNG2ICO # png2ico: doesn't read PNG transparency properly @@ -22,7 +22,7 @@ all: website \ logotype-color-lightbg.png \ logotype-grayscale.png \ logotype-mono-black.png \ - logotype-mono-white.png \ + logotype-mono-white.png website: \ apple-touch-icon-57x57.png \ |