Minor tweaks to quiet makefile and fix bug in add_glyphs.

pull/42/head
Doug Felt 2016-01-28 14:03:21 -08:00
parent 9f6837da4b
commit 6caa07aaae
2 changed files with 2 additions and 2 deletions

View File

@ -146,7 +146,7 @@ waveflag: waveflag.c
$(CC) $< -o $@ $(CFLAGS) $(LDFLAGS)
$(EMOJI_DIR)/%.png: $(EMOJI_SRC_DIR)/%.png | $(EMOJI_DIR)
echo "emoji $< $@"
@echo "emoji $< $@"
@convert -extent 136x128 -gravity center -background none "$<" "$@"
$(FLAGS_DIR)/%.png: $(FLAGS_SRC_DIR)/%.png ./waveflag $(PNGQUANT) | $(FLAGS_DIR)

View File

@ -112,7 +112,7 @@ for img_prefix in img_prefixen:
codes = img_file[len (img_prefix):-4]
u = codes_to_string(codes)
if u in img_files:
print 'overwriting %s with %s' % (img_files[u], imag_file)
print 'overwriting %s with %s' % (img_files[u], img_file)
img_files[u] = img_file
if not img_files:
raise Exception ("No image files found in '%s'." % glb)