aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2015-03-27 14:21:53 +0100
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2015-03-27 14:21:53 +0100
commit8e678af4ba873c348ec2634ab22f84c61546c093 (patch)
tree96a7c038856fc64826402e2b71727caa9f2ed62b /Makefile
parent70a1165b32acf253905109e9b4f245295d67af1f (diff)
downloadyoutube-dl-8e678af4ba873c348ec2634ab22f84c61546c093.zip
youtube-dl-8e678af4ba873c348ec2634ab22f84c61546c093.tar.gz
youtube-dl-8e678af4ba873c348ec2634ab22f84c61546c093.tar.bz2
Makefile: fix 'find' command
It worked with the GNU version, but not with the BSD version.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index c6c7627..fdb1abb 100644
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,7 @@ all: youtube-dl README.md CONTRIBUTING.md README.txt youtube-dl.1 youtube-dl.bas
clean:
rm -rf youtube-dl.1.temp.md youtube-dl.1 youtube-dl.bash-completion README.txt MANIFEST build/ dist/ .coverage cover/ youtube-dl.tar.gz youtube-dl.zsh youtube-dl.fish *.dump *.part *.info.json *.mp4 *.flv *.mp3 *.avi CONTRIBUTING.md.tmp youtube-dl youtube-dl.exe
- find -name "*.pyc" -delete
+ find . -name "*.pyc" -delete
PREFIX ?= /usr/local
BINDIR ?= $(PREFIX)/bin