aboutsummaryrefslogtreecommitdiffstats
path: root/chapter06
diff options
context:
space:
mode:
authorGerard Beekmans <gerard@linuxfromscratch.org>2003-07-30 19:22:54 +0000
committerGerard Beekmans <gerard@linuxfromscratch.org>2003-07-30 19:22:54 +0000
commit615efc850a3c0a01e1f131a3cdbc1f67e834e4a9 (patch)
treea4a4dd2ba5a89efa165b66c13ab75fcd89c4b4c4 /chapter06
parent153db8fe247fc2a59df12270c80e28b96239e5f5 (diff)
Upgraded to binutils-2.14,
linux-2.4.21, expect-5.38.4, gawk-3.1.3, texinfo-4.6, util-linux-2.12, man-pages-1.58, lfs-utils-0.3, vim-6.2, gettext-0.12.1, automake-1.7.6, file-4.03, e2fsprogs-1.34, procps-3.1.11, psmisc-21.3 git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@2660 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06')
-rw-r--r--chapter06/vim-inst.xml20
1 files changed, 8 insertions, 12 deletions
diff --git a/chapter06/vim-inst.xml b/chapter06/vim-inst.xml
index 86c849913..4650d31b8 100644
--- a/chapter06/vim-inst.xml
+++ b/chapter06/vim-inst.xml
@@ -3,24 +3,20 @@
<sect2>
<title>Installation of Vim</title>
+<para>Change the default locations of the <filename>vimrc</filename> and
+<filename>gvimrc</filename> files to <filename
+class="directory">/etc</filename>.</para>
+
+<para><screen><userinput>echo '#define SYS_VIMRC_FILE "/etc/vimrc"' &gt;&gt; src/feature.h
+echo '#define SYS_GVIMRC_FILE "/etc/gvimrc"' &gt;&gt; src/feature.h</userinput></screen></para>
+
<para>Prepare Vim to be compiled:</para>
<para><screen><userinput>./configure --prefix=/usr</userinput></screen></para>
<para>Continue with compiling the package:</para>
-<para><screen><userinput>make CPPFLAGS=-DSYS_VIMRC_FILE=\\\"/etc/vimrc\\\"</userinput></screen></para>
-
-<para>The meaning of the make option is:</para>
-
-<itemizedlist>
-<listitem><para><userinput>CPPFLAGS=-DSYS_VIMRC_FILE=\\\"/etc/vimrc\\\"</userinput>:
-This option causes vim to look for the <filename>/etc/vimrc</filename> file
-which contains vim's global settings. Normally, this file is assumed to be
-located in <filename class="directory">/usr/share/vim</filename>, but we
-feel that <filename class="directory">/etc</filename> is a more logical
-place for this kind of file.</para></listitem>
-</itemizedlist>
+<para><screen><userinput>make</userinput></screen></para>
<para>Finish installing the package:</para>