about summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaimemf93@gmail.com>2013-01-25 15:11:03 +0100
committerJaime Marquínez Ferrándiz <jaimemf93@gmail.com>2013-01-25 15:11:03 +0100
commit271d3fbdaa92e1db51b704c123d5526cea67e5e3 (patch)
tree4825a2f20beb18621bd13ef60531b69bf2864aab /Makefile
parent6df40dcbe0a0d6889fffbdc1dd7bf14452d3a605 (diff)
downloadyoutube-dl-271d3fbdaa92e1db51b704c123d5526cea67e5e3.tar.gz
youtube-dl-271d3fbdaa92e1db51b704c123d5526cea67e5e3.tar.xz
youtube-dl-271d3fbdaa92e1db51b704c123d5526cea67e5e3.zip
Option in makefile to select python interpreter
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index b47433573..7aae2c309 100644
--- a/Makefile
+++ b/Makefile
@@ -7,6 +7,7 @@ PREFIX=/usr/local
 BINDIR=$(PREFIX)/bin
 MANDIR=$(PREFIX)/man
 SYSCONFDIR=/etc
+PYTHON=/usr/bin/env python
 
 install: youtube-dl youtube-dl.1 youtube-dl.bash-completion
 	install -d $(DESTDIR)$(BINDIR)
@@ -27,7 +28,7 @@ tar: youtube-dl.tar.gz
 youtube-dl: youtube_dl/*.py
 	zip --quiet youtube-dl youtube_dl/*.py
 	zip --quiet --junk-paths youtube-dl youtube_dl/__main__.py
-	echo '#!/usr/bin/env python' > youtube-dl
+	echo '#! $(PYTHON)' > youtube-dl
 	cat youtube-dl.zip >> youtube-dl
 	rm youtube-dl.zip
 	chmod a+x youtube-dl