diff options
Diffstat (limited to 'documentation/ref-manual/technical-details.xml')
-rw-r--r-- | documentation/ref-manual/technical-details.xml | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/documentation/ref-manual/technical-details.xml b/documentation/ref-manual/technical-details.xml index 50212b0b47..400bbd6e4e 100644 --- a/documentation/ref-manual/technical-details.xml +++ b/documentation/ref-manual/technical-details.xml | |||
@@ -1848,27 +1848,26 @@ | |||
1848 | 1848 | ||
1849 | <para> | 1849 | <para> |
1850 | The build system uses the | 1850 | The build system uses the |
1851 | <filename><link linkend='var-S'>S</link></filename> variable as the | 1851 | <filename><link linkend='var-S'>S</link></filename> variable as |
1852 | default directory used when searching files listed in | 1852 | the default directory used when searching files listed in |
1853 | <filename>LIC_FILES_CHKSUM</filename>. | 1853 | <filename>LIC_FILES_CHKSUM</filename>. |
1854 | The previous example employs the default directory. | 1854 | The previous example employs the default directory. |
1855 | </para> | 1855 | </para> |
1856 | 1856 | ||
1857 | <para> | 1857 | <para> |
1858 | You can also use relative paths as shown in the following example: | 1858 | Consider this next example: |
1859 | <literallayout class='monospaced'> | 1859 | <literallayout class='monospaced'> |
1860 | LIC_FILES_CHKSUM = "file://src/ls.c;beginline=5;endline=16;\ | 1860 | LIC_FILES_CHKSUM = "file://src/ls.c;beginline=5;endline=16;\ |
1861 | md5=bb14ed3c4cda583abc85401304b5cd4e" | 1861 | md5=bb14ed3c4cda583abc85401304b5cd4e" |
1862 | LIC_FILES_CHKSUM = "file://../license.html;md5=5c94767cedb5d6987c902ac850ded2c6" | 1862 | LIC_FILES_CHKSUM = "file://${WORKDIR}/license.html;md5=5c94767cedb5d6987c902ac850ded2c6" |
1863 | </literallayout> | 1863 | </literallayout> |
1864 | </para> | 1864 | </para> |
1865 | 1865 | ||
1866 | <para> | 1866 | <para> |
1867 | In this example, the first line locates a file in | 1867 | The first line locates a file in |
1868 | <filename>${S}/src/ls.c</filename>. | 1868 | <filename>${S}/src/ls.c</filename>. |
1869 | The second line refers to a file in | 1869 | The second line refers to a file in |
1870 | <filename><link linkend='var-WORKDIR'>WORKDIR</link></filename>, which is the parent | 1870 | <filename><link linkend='var-WORKDIR'>WORKDIR</link></filename>. |
1871 | of <filename><link linkend='var-S'>S</link></filename>. | ||
1872 | </para> | 1871 | </para> |
1873 | <para> | 1872 | <para> |
1874 | Note that <filename>LIC_FILES_CHKSUM</filename> variable is | 1873 | Note that <filename>LIC_FILES_CHKSUM</filename> variable is |