[pypy-commit] pypy default: Build docs: fix fedora dependencies installation snippet.

robert-zaremba pypy.commits at gmail.com
Sun Feb 26 17:57:16 EST 2017


Author: Robert Zaremba <robert.zaremba at scale-it.pl>
Branch: 
Changeset: r90374:3fbdd036db1c
Date: 2017-02-26 23:05 +0100
http://bitbucket.org/pypy/pypy/changeset/3fbdd036db1c/

Log:	Build docs: fix fedora dependencies installation snippet.

	In fedora the sqlite dependency should be sqlite-devel (lib-
	sqlite3-devel doesn't exists).

diff --git a/pypy/doc/build.rst b/pypy/doc/build.rst
--- a/pypy/doc/build.rst
+++ b/pypy/doc/build.rst
@@ -49,7 +49,7 @@
 -------------------------------
 (**Note**: for some hints on how to translate the Python interpreter under
 Windows, see the `windows document`_ . For hints on how to cross-compile in
-a chroot using scratchbox2, see the `arm document`_ in the 
+a chroot using scratchbox2, see the `arm document`_ in the
 `RPython documentation`_)
 
 .. _`windows document`: windows.html
@@ -57,7 +57,7 @@
 .. _`RPython documentation`: http://rpython.readthedocs.org
 
 The host Python needs to have CFFI installed. If translating on PyPy, CFFI is
-already installed. If translating on CPython, you need to install it, e.g. 
+already installed. If translating on CPython, you need to install it, e.g.
 using ``pip install cffi``.
 
 To build PyPy on Unix using the C translation backend, you need at least a C
@@ -113,7 +113,7 @@
 On Fedora::
 
     dnf install gcc make libffi-devel pkgconfig zlib-devel bzip2-devel \
-    lib-sqlite3-devel ncurses-devel expat-devel openssl-devel tk-devel \
+    sqlite-devel ncurses-devel expat-devel openssl-devel tk-devel \
     gdbm-devel \
     xz-devel  # For lzma on PyPy3.
 
@@ -183,7 +183,7 @@
 imported the first time.
 
 ::
-    
+
     cd pypy/tool/release
     ./package.py pypy-VER-PLATFORM
 
@@ -220,5 +220,3 @@
 to continue normally. If the default path is usable, most code will be fine.
 However, the ``sys.prefix`` will be unset and some existing libraries assume
 that this is never the case.
-
-


More information about the pypy-commit mailing list