Escape dollar-sign in makefile

This commit is contained in:
Johannes Schönberger
2013-04-27 18:08:58 +02:00
parent efea865cc3
commit f51adcd66c
+1 -1
View File
@@ -13,4 +13,4 @@ coverage:
nosetests skimage --with-coverage --cover-package=skimage
run-all-examples:
for f in doc/examples/*.py; do python "$f"; done
for f in doc/examples/*.py; do python "$$f"; done