On Fri, 7 Jun 2013 15:05:02 +0200, Jakub Wilk wrote: > This: > > PY3REQUESTED := $(shell py3versions -r) > PY3DEFAULT := $(shell py3versions -d) > PYTHON3 := $(filter-out $(PY3DEFAULT),$(PY3REQUESTED)) python3 > > looks over-engineered. How about: > > PYTHON3 = $(shell py3versions -r) > > instead?
This can be used to make sure that scripts get a #!/usr/bin/python3 shebang, and not a versioned one (see also #692393). This package doesn't seem to have any scripts, though. -- Dmitry Shachnev -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected] Archive: http://lists.debian.org/20130630122838.10724.50039@eeepc

