aboutsummaryrefslogtreecommitdiffstats
path: root/chapter06/ncurses.xml
diff options
context:
space:
mode:
authorMatthew Burgess <matthew@linuxfromscratch.org>2013-02-11 20:15:37 +0000
committerMatthew Burgess <matthew@linuxfromscratch.org>2013-02-11 20:15:37 +0000
commitce5ebe1429b10c536f09c3f4d8e1c6e8e0cb6e46 (patch)
tree038ac53b7d7e5a85137cfa9add6800dddf806540 /chapter06/ncurses.xml
parenteea40552f7f2760a902d87e98eecad9ab23caf81 (diff)
Remove trailing whitespace from all files.
git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/systemd/BOOK@10122 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06/ncurses.xml')
-rw-r--r--chapter06/ncurses.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/chapter06/ncurses.xml b/chapter06/ncurses.xml
index ab9ba7dd3..6f9cc3792 100644
--- a/chapter06/ncurses.xml
+++ b/chapter06/ncurses.xml
@@ -116,8 +116,8 @@
non-wide-character Ncurses libraries. Trick such applications into linking with
wide-character libraries by means of symlinks and linker scripts:</para>
-<screen><userinput remap="install">for lib in ncurses form panel menu ; do
- rm -vf /usr/lib/lib${lib}.so
+<screen><userinput remap="install">for lib in ncurses form panel menu ; do
+ rm -vf /usr/lib/lib${lib}.so
echo "INPUT(-l${lib}w)" &gt; /usr/lib/lib${lib}.so
ln -sfv lib${lib}w.a /usr/lib/lib${lib}.a
ln -sfv ${lib}w.pc /usr/lib/pkgconfig/${lib}.pc
@@ -144,7 +144,7 @@ cp -v -R doc/* /usr/share/doc/ncurses-&ncurses-version;</userinput></screen>
<para>The instructions above don't create non-wide-character Ncurses
libraries since no package installed by compiling from sources would
link against them at runtime. If you must have such libraries because
- of some binary-only application or to be compliant with LSB, build
+ of some binary-only application or to be compliant with LSB, build
the package again with the following commands:</para>
<screen role="nodump"><userinput>make distclean