[Python-apps-commits] r449 - in packages/cython/trunk/debian (README.Debian changelog)

certik-guest at users.alioth.debian.org certik-guest at users.alioth.debian.org
Sat Dec 22 21:54:00 UTC 2007


    Date: Saturday, December 22, 2007 @ 21:53:59
  Author: certik-guest
Revision: 449

Use -fPIC in the gcc commands example in README.Debian

Modified:
  packages/cython/trunk/debian/README.Debian
  packages/cython/trunk/debian/changelog

Modified: packages/cython/trunk/debian/README.Debian
===================================================================
--- packages/cython/trunk/debian/README.Debian	2007-12-22 21:37:17 UTC (rev 448)
+++ packages/cython/trunk/debian/README.Debian	2007-12-22 21:53:59 UTC (rev 449)
@@ -10,7 +10,7 @@
         s += k + 1
     return s
 $ cython  t.pyx 
-$ gcc -O3 -I/usr/include/python2.4/ -c -o t.o t.c
+$ gcc -fPIC -O3 -I/usr/include/python2.4/ -c -o t.o t.c
 $ gcc -shared t.o -o t.so
 $ python
 Python 2.4.4 (#2, Aug 16 2007, 02:03:40) 

Modified: packages/cython/trunk/debian/changelog
===================================================================
--- packages/cython/trunk/debian/changelog	2007-12-22 21:37:17 UTC (rev 448)
+++ packages/cython/trunk/debian/changelog	2007-12-22 21:53:59 UTC (rev 449)
@@ -6,6 +6,7 @@
   * ${misc:Depends} added to Depends
   * Depend on debhelper >= 5.0.38
   * gcc added to Suggests
+  * README.Debian gcc command fixed by adding -fPIC
 
  -- Ondrej Certik <ondrej at certik.cz>  Sat, 22 Dec 2007 22:12:00 +0100
 




More information about the Python-apps-commits mailing list