diff options
author | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2020-06-10 20:44:16 +0000 |
---|---|---|
committer | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2020-06-10 20:44:16 +0000 |
commit | bc8cca581fed74c60e201a89acb38cb2344c9b1b (patch) | |
tree | 083cf3ef71c66c95887fc07c0963aaaf52b3a049 /chapter06/ncurses.xml | |
parent | 67d1e797c307817787ac03eda253312b110ba45d (diff) |
Text updates to cross2 branch Chapter 6
git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/cross2@11917 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06/ncurses.xml')
-rw-r--r-- | chapter06/ncurses.xml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/chapter06/ncurses.xml b/chapter06/ncurses.xml index 93cf85263..d96d7d0f3 100644 --- a/chapter06/ncurses.xml +++ b/chapter06/ncurses.xml @@ -51,11 +51,11 @@ program on the build host:</para> <screen><userinput remap="pre">mkdir build -cd build -../configure -make -C include -make -C progs tic -cd ..</userinput></screen> +pushd build + ../configure + make -C include + make -C progs tic +popd</userinput></screen> <para>Prepare Ncurses for compilation:</para> |