summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/opkg-utils/opkg-utils/shebang.patch
diff options
context:
space:
mode:
authorMartin Jansa <Martin.Jansa@gmail.com>2012-03-30 00:19:59 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-05-01 12:38:09 +0100
commit275c2f8c6004aa2570aeeaa9f5e3845852c54a87 (patch)
tree702efb33aedc8bf1ed2e7f24e4e83d020d833e60 /meta/recipes-devtools/opkg-utils/opkg-utils/shebang.patch
parent76546d1d3ea9efc160e05a0934de368a51820b03 (diff)
downloadpoky-275c2f8c6004aa2570aeeaa9f5e3845852c54a87.tar.gz
opkg-utils: bump SRCREV for Packages cache fix and other fixes
(From OE-Core rev: 5863e2ae81b7840d6cb9b80641a7fd69ce4d6f1f) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/opkg-utils/opkg-utils/shebang.patch')
-rw-r--r--meta/recipes-devtools/opkg-utils/opkg-utils/shebang.patch46
1 files changed, 0 insertions, 46 deletions
diff --git a/meta/recipes-devtools/opkg-utils/opkg-utils/shebang.patch b/meta/recipes-devtools/opkg-utils/opkg-utils/shebang.patch
deleted file mode 100644
index f6a2ef9bdf..0000000000
--- a/meta/recipes-devtools/opkg-utils/opkg-utils/shebang.patch
+++ /dev/null
@@ -1,46 +0,0 @@
1Use python via the PATH, rather than hardcoding /usr/bin/python
2
3Upstream-Status: Pending
4
5Signed-off-by: Christopher Larson <kergoth@gmail.com>
6
7--- opkg-utils.orig/opkg-list-fields
8+++ opkg-utils/opkg-list-fields
9@@ -1,4 +1,4 @@
10-#!/usr/bin/python
11+#!/usr/bin/env python
12
13 import sys, opkg
14
15--- opkg-utils.orig/opkg-make-index
16+++ opkg-utils/opkg-make-index
17@@ -1,4 +1,4 @@
18-#!/usr/bin/python
19+#!/usr/bin/env python
20
21 import sys, os, posixpath
22 from glob import glob
23--- opkg-utils.orig/opkg-show-deps
24+++ opkg-utils/opkg-show-deps
25@@ -1,4 +1,4 @@
26-#!/usr/bin/python
27+#!/usr/bin/env python
28
29 import sys, os, posixpath
30 from glob import glob
31--- opkg-utils.orig/opkg-unbuild
32+++ opkg-utils/opkg-unbuild
33@@ -1,4 +1,4 @@
34-#!/usr/bin/python
35+#!/usr/bin/env python
36
37 import sys, os, re
38
39--- opkg-utils.orig/opkg-update-index
40+++ opkg-utils/opkg-update-index
41@@ -1,4 +1,4 @@
42-#!/usr/bin/env python2.1
43+#!/usr/bin/env python
44
45 import sys, os
46 from glob import glob