1 | <sect2>
|
---|
2 | <title>Command explanations</title>
|
---|
3 |
|
---|
4 | <para><userinput>T=`grep...:</userinput> Determines the part where the tarfile begins in the self extracting archive.</para>
|
---|
5 |
|
---|
6 | <para><userinput>export ALT_BOOTDIR="$JAVA_HOME" :</userinput> This
|
---|
7 | var sets location of the bootstrap JDK.
|
---|
8 | </para>
|
---|
9 |
|
---|
10 | <para><userinput>export ALT_MOZILLA_PATH=$PWD :</userinput> This sets the
|
---|
11 | variable that points to where you unzipped the mozilla headers.</para>
|
---|
12 |
|
---|
13 | <para><userinput>export ALT_DEVTOOLS_PATH="/usr/bin" :</userinput> This
|
---|
14 | changes the location where the build finds the needed executables.
|
---|
15 | </para>
|
---|
16 |
|
---|
17 | <para><userinput>export BUILD_NUMBER="blfs-`date +%s`" :</userinput> This will
|
---|
18 | help you identify this compiled version of the runtime environment and
|
---|
19 | virtual machine by appending this information to the version in the
|
---|
20 | output to "java -version".</para>
|
---|
21 |
|
---|
22 | <para><userinput>export DEV_ONLY=true :</userinput> This command
|
---|
23 | eliminates compiling the documentation and eliminates a dependency for
|
---|
24 | rpm. </para>
|
---|
25 |
|
---|
26 | <para><userinput>unset JAVA_HOME :</userinput> This clears the JAVA_HOME
|
---|
27 | variable and prevents misdirection during compile.</para>
|
---|
28 |
|
---|
29 | <para><userinput>unset CLASSPATH :</userinput> This clears the CLASSPATH
|
---|
30 | variable and prevents misdirection during compile.</para>
|
---|
31 |
|
---|
32 | <para><userinput>unset CFLAGS... :</userinput> These flags cause miscompilation
|
---|
33 | of the build. Never set these.
|
---|
34 | </para>
|
---|
35 |
|
---|
36 | <para><userinput>export INSANE=true:</userinput> Unless you specify that you
|
---|
37 | are insane the build will not proceed. The certified platform for the build is
|
---|
38 | Redhat 6.1. The above variable ensures that all the errors related to
|
---|
39 | compiling on a non-certified platform will be converted to warnings.</para>
|
---|
40 |
|
---|
41 | <para><userinput>export MAKE_VERBOSE=true:</userinput> Allows the current
|
---|
42 | compilation command to be displayed on the console.</para>
|
---|
43 |
|
---|
44 | <para><userinput>export ALT_CACERTS_FILE...: </userinput> Specifies the certificate
|
---|
45 | file to use.</para>
|
---|
46 |
|
---|
47 | </sect2>
|
---|
48 |
|
---|