diff options
author | Fred Drake <fdrake@acm.org> | 2001-06-22 16:00:54 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-06-22 16:00:54 (GMT) |
commit | 2c5ecdabb3370a586b3411d07ab3d8846ef16b28 (patch) | |
tree | 3389754e30554aac958d994d148b0ed47cb5552c | |
parent | 83eb8ccbc55cbd2bc574c6caac5b5c10b8f4ebd2 (diff) | |
download | cpython-2c5ecdabb3370a586b3411d07ab3d8846ef16b28.zip cpython-2c5ecdabb3370a586b3411d07ab3d8846ef16b28.tar.gz cpython-2c5ecdabb3370a586b3411d07ab3d8846ef16b28.tar.bz2 |
Fix & clean up the information about building Python with large file support
for Linux.
This closes SF bug #434975.
-rw-r--r-- | Doc/lib/libposix.tex | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Doc/lib/libposix.tex b/Doc/lib/libposix.tex index 0bb8173..9bbc336 100644 --- a/Doc/lib/libposix.tex +++ b/Doc/lib/libposix.tex @@ -62,10 +62,9 @@ CFLAGS="`getconf LFS_CFLAGS`" OPT="-g -O2 $CFLAGS" \ On large-file-capable Linux systems, this might work: \begin{verbatim} -CC="-D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64" -export CC -./configure -\end{verbatim} +CFLAGS='-D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64' OPT="-g -O2 $CFLAGS" \ + ./configure +\end{verbatim} % $ <-- bow to font-lock \subsection{Module Contents \label{posix-contents}} |