shithub: pokecrystal

Download patch

ref: f0af75e8d203a731a8652901e7d3d621bd176fb0
parent: 69198a5b3d75c1282b3f789fb378b9e50d8addd2
author: yenatch <yenatch@gmail.com>
date: Sat Aug 29 07:02:56 EDT 2015

Fix touching in make pngs.

--- a/Makefile
+++ b/Makefile
@@ -76,8 +76,8 @@
 pngs:
 	find . -iname "*.lz"      -exec $(gfx) unlz {} +
 	find . -iname "*.[12]bpp" -exec $(gfx) png  {} +
-	find . -iname "*.[12]bpp" -exec touch {} +
-	find . -iname "*.lz"      -exec touch {} +
+	find . -iname "*.[12]bpp" -exec touch {} \;
+	find . -iname "*.lz"      -exec touch {} \;
 
 %.2bpp: %.png ; $(gfx) 2bpp $<
 %.1bpp: %.png ; $(gfx) 1bpp $<