summaryrefslogtreecommitdiffstats
path: root/package/python/python-2.7-009-python-symlink.patch
diff options
context:
space:
mode:
authorSamuel Martin <s.martin49@gmail.com>2012-11-30 11:46:27 +0000
committerPeter Korsgaard <jacmet@sunsite.dk>2012-11-30 14:31:07 -0800
commit4b3425c0bbe43a6c537a8d0833eec3826f623f67 (patch)
tree60aead06e15f706d4fe152e16238a0f8af340a68 /package/python/python-2.7-009-python-symlink.patch
parent7364f0cb2288262786e38401c91a47a01ba024cb (diff)
downloadbuildroot-novena-4b3425c0bbe43a6c537a8d0833eec3826f623f67.tar.gz
buildroot-novena-4b3425c0bbe43a6c537a8d0833eec3826f623f67.zip
python2: bump to 2.7.3
Pyhton 2.7.3 includes several security fixes. See: http://www.python.org/download/releases/2.7.3/ Also fixes the patch making sqlite optional and remove the symlink patch (which has been fixed upstream). Signed-off-by: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/python/python-2.7-009-python-symlink.patch')
-rw-r--r--package/python/python-2.7-009-python-symlink.patch25
1 files changed, 0 insertions, 25 deletions
diff --git a/package/python/python-2.7-009-python-symlink.patch b/package/python/python-2.7-009-python-symlink.patch
deleted file mode 100644
index 1b1d0c866..000000000
--- a/package/python/python-2.7-009-python-symlink.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-Use a symlink between python and pythonVERSION
-
-By default, a hard link is used between /usr/bin/python and
-/usr/bin/pythonVERSION. Using hard links for such things is fairly
-uncommon, so let's make a symbolic link instead.
-
-Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-
----
- Makefile.pre.in | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-Index: Python-2.7.2/Makefile.pre.in
-===================================================================
---- Python-2.7.2.orig/Makefile.pre.in
-+++ Python-2.7.2/Makefile.pre.in
-@@ -796,7 +796,7 @@
- then rm -f $(DESTDIR)$(BINDIR)/$(PYTHON); \
- else true; \
- fi
-- (cd $(DESTDIR)$(BINDIR); $(LN) python$(VERSION)$(EXE) $(PYTHON))
-+ (cd $(DESTDIR)$(BINDIR); $(LN) -s python$(VERSION)$(EXE) $(PYTHON))
- -rm -f $(DESTDIR)$(BINDIR)/python-config
- (cd $(DESTDIR)$(BINDIR); $(LN) -s python$(VERSION)-config python-config)
- -test -d $(DESTDIR)$(LIBPC) || $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$(LIBPC)