summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2016-05-02 02:20:41 -0400
committerLuke Shumaker <lukeshu@sbcglobal.net>2016-05-02 02:20:41 -0400
commit8aa29eb8d0b7ffaf1006bf6836a65a9f1000676e (patch)
tree437e39ee5466534dcc688cd0c7cffbc5e53c406a
parent395aad915a98aaeea721fcf8d24baec989a13154 (diff)
build-bash-1: add a missing close-paren
-rw-r--r--public/build-bash-1.html2
-rw-r--r--public/build-bash-1.md2
2 files changed, 2 insertions, 2 deletions
diff --git a/public/build-bash-1.html b/public/build-bash-1.html
index fcc612a..68ca09c 100644
--- a/public/build-bash-1.html
+++ b/public/build-bash-1.html
@@ -30,7 +30,7 @@
<p>I made these two small changes to <code>machines.h</code> to get it to work correctly on my box:</p>
<ol type="1">
<li>Replace <code>#if defined (i386)</code> with <code>#if defined (i386) || defined (__x86_64__)</code>. The purpose of this is obvious.</li>
-<li>Add <code>#define USE_TERMCAP_EMULATION</code> to the section for Linux [sic] on i386 (<code># if !defined (done386) &amp;&amp; (defined (__linux__) || defined (linux))</code>. What this does is tell it to link against libcurses to use curses termcap emulation, instead of linking against libtermcap (which doesn't exist on modern GNU/Linux systems).</li>
+<li>Add <code>#define USE_TERMCAP_EMULATION</code> to the section for Linux [sic] on i386 (<code># if !defined (done386) &amp;&amp; (defined (__linux__) || defined (linux))</code>). What this does is tell it to link against libcurses to use curses termcap emulation, instead of linking against libtermcap (which doesn't exist on modern GNU/Linux systems).</li>
</ol>
<p>Again, I've prepared <a href="./bash-1.14.7-machines-config.patch">a patch</a> that does this.</p>
<h2 id="building">Building</h2>
diff --git a/public/build-bash-1.md b/public/build-bash-1.md
index 27b3fba..8e8c847 100644
--- a/public/build-bash-1.md
+++ b/public/build-bash-1.md
@@ -51,7 +51,7 @@ correctly on my box:
is obvious.
2. Add `#define USE_TERMCAP_EMULATION` to the section for Linux [sic]
on i386
- (`# if !defined (done386) && (defined (__linux__) || defined (linux))`.
+ (`# if !defined (done386) && (defined (__linux__) || defined (linux))`).
What this does is tell it to link against libcurses to use
curses termcap emulation, instead of linking against libtermcap
(which doesn't exist on modern GNU/Linux systems).