diff options
author | Gerard Beekmans <gerard@linuxfromscratch.org> | 2001-08-24 15:50:27 +0000 |
---|---|---|
committer | Gerard Beekmans <gerard@linuxfromscratch.org> | 2001-08-24 15:50:27 +0000 |
commit | 986ac8fdc74fdc88835dcf46230f1d9319dc7a50 (patch) | |
tree | d84496dd8787b232d80de19642246bfc5bf2f5a6 | |
parent | 05e603655ada1b8f05e29d34bec5295e9edb10ac (diff) |
Removed -e from 'make' command
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@1013 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
-rw-r--r-- | chapter05/binutils-exp.xml | 5 | ||||
-rw-r--r-- | chapter05/binutils-inst.xml | 4 |
2 files changed, 2 insertions, 7 deletions
diff --git a/chapter05/binutils-exp.xml b/chapter05/binutils-exp.xml index 4ac33410a..eb23e2151 100644 --- a/chapter05/binutils-exp.xml +++ b/chapter05/binutils-exp.xml @@ -1,11 +1,6 @@ <sect2> <title>Command explanations</title> -<para><userinput>make -e:</userinput> The -e parameter tells make that -environment variables take precedence over variables defined in the -Makefile file(s). This is needed in order to successfully link binutils -statically.</para> - <para><userinput>--disable-nls:</userinput> This option disabled internationalization (also known as i18n). We don't need this for our static programs and nls often causes problems when you're linking diff --git a/chapter05/binutils-inst.xml b/chapter05/binutils-inst.xml index 982b2da78..6e6d242d2 100644 --- a/chapter05/binutils-inst.xml +++ b/chapter05/binutils-inst.xml @@ -4,8 +4,8 @@ <para>Install Binutils by running the following commands:</para> <para><screen><userinput>./configure --prefix=$LFS/usr --disable-nls &&</userinput> -<userinput>make -e LDFLAGS=-all-static tooldir=$LFS/usr &&</userinput> -<userinput>make -e tooldir=$LFS/usr install</userinput></screen></para> +<userinput>make LDFLAGS=-all-static tooldir=$LFS/usr &&</userinput> +<userinput>make tooldir=$LFS/usr install</userinput></screen></para> </sect2> |