Minor editorial changes

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@19473 af4574ff-66df-0310-9fd7-8a98e5e911e0
This commit is contained in:
Bruce Dubbs 2017-11-11 02:02:52 +00:00
parent 66d9ef8d45
commit 2c71e1c19a

View File

@ -93,12 +93,12 @@
<para> <para>
If you are building on i686, <application>sshfs</application> needs If you are building on i686, <application>sshfs</application> needs
an extra set of CFLAGS needs to be defined to prevent an integer an extra CFLAGS setting to be defined. This prevents an integer
overflow. Define these by running the following command: overflow. To do this, run the following command:
</para> </para>
<screen><userinput>if [ $(uname -m) = "i686" ]; then <screen><userinput>if [ $(uname -m) = "i686" ]; then
export CFLAGS+="-D_FILE_OFFSET_BITS=64"; export CFLAGS+="-D_FILE_OFFSET_BITS=64";
fi</userinput></screen> fi</userinput></screen>
<para> <para>