summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIIMarckus <iimarckus@gmail.com>2014-09-23 22:20:27 -0600
committerIIMarckus <iimarckus@gmail.com>2014-09-23 22:20:27 -0600
commitc28be212607ded804539975ae6905f218b73bcca (patch)
treefe8e1ba79b4229b6c9f578728ff5e970429a223e
parent4f018846fb35ca08cb2b0dc7a1f9159905c16777 (diff)
Use a path argument for find as required by POSIX.
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 150e9bb80..b77607436 100644
--- a/Makefile
+++ b/Makefile
@@ -43,7 +43,7 @@ crystal: pokecrystal.gbc
clean:
rm -f $(roms) $(all_obj)
- find -iname '*.tx' -exec rm {} +
+ find . -iname '*.tx' -exec rm {} +
baserom.gbc: ;
@echo "Wait! Need baserom.gbc first. Check README and INSTALL for details." && false