aboutsummaryrefslogtreecommitdiff
path: root/Makefile.am
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile.am')
-rw-r--r--Makefile.am5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am
index f53944fd..1b306a01 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -260,7 +260,10 @@ update-index.html:
(cd www/images && \
rm -f small-* && \
for i in *.png; do \
- convert "$$i" -resize 200x150 "small-$$i"; \
+ convert "$$i" \
+ -resize '150x' -resize 'x100<' \
+ -gravity center -crop 150x100+0+0 +repage \
+ "small-$$i"; \
done \
)
sed "s/%%RELEASE%%/${RELEASE}/g" www/index.html.in >www/index.html