Browse Source

Mathieu Doidy <mdoidy@roulaize.net>:

patch to fix the shared files with python in stage 9
it prevents the recompilation of 3rd-party packages


git-svn-id: http://www.rocklinux.org/svn/rock-linux/trunk@1780 c5f82cb5-29bc-0310-9cd0-bff59a50e3bc
rocklinux
Mathieu 21 years ago
parent
commit
b584c170bc
2 changed files with 19 additions and 1 deletions
  1. +1
    -1
      Documentation/Developers/CHANGELOG-RENE
  2. +18
    -0
      package/base/python/no-site-package.patch

+ 1
- 1
Documentation/Developers/CHANGELOG-RENE

@ -8,7 +8,7 @@
- Mathieu Doidy: mathieu's repository update: bitlbee (0.82), bogofilter
(0.15.7), liferea (0.4.4), mldonkey (2.5-4), mpc (0.9.2),
mpd (0.9.3) and xcdroast (0.98alpha15)
fixed gjiten
fixed gjiten and python shared files
*) 2003-11-14 (2.0.0-rc2 - 2.0.0-rc3)

+ 18
- 0
package/base/python/no-site-package.patch

@ -0,0 +1,18 @@
diff -ru Python-2.3.old/Makefile.pre.in Python-2.3/Makefile.pre.in
--- Python-2.3.old/Makefile.pre.in 2003-07-13 12:10:42.000000000 +0200
+++ Python-2.3/Makefile.pre.in 2003-11-15 20:22:02.000000000 +0100
@@ -709,14 +709,6 @@
./$(BUILDPYTHON) -Wi -tt -O $(DESTDIR)$(LIBDEST)/compileall.py \
-d $(LIBDEST) -f \
-x 'badsyntax|site-packages' $(DESTDIR)$(LIBDEST)
- PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
- ./$(BUILDPYTHON) -Wi -t $(DESTDIR)$(LIBDEST)/compileall.py \
- -d $(LIBDEST)/site-packages -f \
- -x badsyntax $(DESTDIR)$(LIBDEST)/site-packages
- PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
- ./$(BUILDPYTHON) -Wi -t -O $(DESTDIR)$(LIBDEST)/compileall.py \
- -d $(LIBDEST)/site-packages -f \
- -x badsyntax $(DESTDIR)$(LIBDEST)/site-packages
# Create the PLATDIR source directory, if one wasn't distributed..
$(srcdir)/Lib/$(PLATDIR):

Loading…
Cancel
Save