File: fix_wrong_interpreter_path.patch

package info (click to toggle)
python-gdata 2.0.17%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 26,080 kB
  • sloc: python: 73,579; ansic: 150; sh: 33; makefile: 11
file content (12 lines) | stat: -rw-r--r-- 644 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
Exchange #!/usr/local/bin/python with #!/usr/bin/python
in file src/gdata/Crypto/Util/RFC1751.py
Index: gdata-2.0.13/src/gdata/Crypto/Util/RFC1751.py
===================================================================
--- gdata-2.0.13.orig/src/gdata/Crypto/Util/RFC1751.py	2010-12-29 10:39:23.586095902 +0100
+++ gdata-2.0.13/src/gdata/Crypto/Util/RFC1751.py	2010-12-29 10:39:38.000000000 +0100
@@ -1,4 +1,4 @@
-#!/usr/local/bin/python
+#!/usr/bin/python
 # rfc1751.py : Converts between 128-bit strings and a human-readable
 # sequence of words, as defined in RFC1751: "A Convention for
 # Human-Readable 128-bit Keys", by Daniel L. McDonald.