1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
#! /bin/sh /usr/share/dpatch/dpatch-run
## ezsetup-python-path.dpatch by Christoph Haas <haas@debian.org>
##
## All lines beginning with `## DP:' are a description of the patch.
## DP: Lintian complains about python path not being absolute
@DPATCH@
diff -urNad python-authkit_0.4.0~r95~/authkit/template/authenticate/ez_setup/__init__.py python-authkit_0.4.0~r95/authkit/template/authenticate/ez_setup/__init__.py
--- python-authkit_0.4.0~r95~/authkit/template/authenticate/ez_setup/__init__.py 2007-07-17 00:30:21.000000000 +0200
+++ python-authkit_0.4.0~r95/authkit/template/authenticate/ez_setup/__init__.py 2007-07-26 00:01:02.000000000 +0200
@@ -1,4 +1,4 @@
-#!python
+#!/usr/bin/env python
"""Bootstrap setuptools installation
If you want to use setuptools in your package's setup.py, just include this
|