about summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
authorgcmalloc <gcmalloc@gmail.com>2012-12-07 21:59:59 +0100
committergcmalloc <gcmalloc@gmail.com>2012-12-07 22:01:02 +0100
commita9d2f7e8945abfb792b76ba551f568d3580c30a6 (patch)
treed127116264a5a9c982c1eee11f76134e9e6f24ac /Makefile
parent682407f2d5048cf034faf75b3e3611db31850f91 (diff)
downloadyoutube-dl-a9d2f7e8945abfb792b76ba551f568d3580c30a6.tar.gz
youtube-dl-a9d2f7e8945abfb792b76ba551f568d3580c30a6.tar.xz
youtube-dl-a9d2f7e8945abfb792b76ba551f568d3580c30a6.zip
making the script compatible with python3
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 3 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index e152b00ac..119c1eeaa 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-all: youtube-dl README.md README.txt youtube-dl.1 youtube-dl.bash-completion 
+all: youtube-dl README.md README.txt youtube-dl.1 youtube-dl.bash-completion
 
 clean:
 	rm -rf youtube-dl youtube-dl.exe youtube-dl.1 youtube-dl.bash-completion README.txt MANIFEST build/ dist/
@@ -38,10 +38,8 @@ README.txt: README.md
 youtube-dl.1: README.md
 	pandoc -s -f markdown -t man README.md -o youtube-dl.1
 
-youtube-dl.bash-completion: README.md youtube-dl.bash-completion.in
-	@options=`egrep -o '(--[a-z-]+) ' README.md | sort -u | xargs echo` && \
-		content=`sed "s/opts=\"[^\"]*\"/opts=\"$${options}\"/g" youtube-dl.bash-completion.in` && \
-		echo "$${content}" > youtube-dl.bash-completion
+youtube-dl.bash-completion: README.md devscripts/bash_completion.template
+	python devscripts/bash_completion.py
 
 youtube-dl.tar.gz: all
 	tar -czf youtube-dl.tar.gz -s "|^./|./youtube-dl/|" \