about summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
authorgcmalloc <gcmalloc@gmail.com>2012-10-05 15:52:40 +0200
committergcmalloc <gcmalloc@gmail.com>2012-10-12 20:25:22 +0200
commit729baf58b2dc6c288b54a00331acef2e62cdbe85 (patch)
tree9d27161fcc7424b7d81ab2642cf424330650d949 /Makefile
parent4c9afeca34ba3d981fa51db18fe9522212ffad4c (diff)
downloadyoutube-dl-729baf58b2dc6c288b54a00331acef2e62cdbe85.tar.gz
youtube-dl-729baf58b2dc6c288b54a00331acef2e62cdbe85.tar.xz
youtube-dl-729baf58b2dc6c288b54a00331acef2e62cdbe85.zip
removing extended globbing for the find utility
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 9f8dc6d93..e44531527 100644
--- a/Makefile
+++ b/Makefile
@@ -50,6 +50,6 @@ test:
 	nosetests2 test/*
 
 clean:
-	rm **/*.pyc
+	find -name "*.pyc" -delete
 
 .PHONY: default compile update update-latest update-readme test clean