Fixed environment variable name

Message ID 03A7D9A58FAFB54FBB01FEE199D7308A0134B91F7B@wdc1exchmbxp02.hq.corp.viasat.com (mailing list archive)
State Not Applicable, archived
Headers
Series Fixed environment variable name |

Checks

Context Check Description
ci/Intel-compilation success Compilation OK

Commit Message

Burdick, Cliff Nov. 16, 2018, 6:02 p.m. UTC
  The documentation specifies the DEST_DIR parameter to ninja to override the install directory, but it's actually DESTDIR.

Signed-off-by: Cliff Burdick <cliff.burdick@viasat.com>

---
 doc/build-sdk-meson.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

2.17.1
  

Comments

Thomas Monjalon Nov. 18, 2018, 11:54 p.m. UTC | #1
16/11/2018 19:02, Burdick, Cliff:
> The documentation specifies the DEST_DIR parameter to ninja to override the install directory, but it's actually DESTDIR.
> 
> Signed-off-by: Cliff Burdick <cliff.burdick@viasat.com>

Thank you
A similar patch was sent earlier:
	https://patches.dpdk.org/patch/48072/
  

Patch

diff --git a/doc/build-sdk-meson.txt b/doc/build-sdk-meson.txt index 508e2cb64..b1a6391af 100644
--- a/doc/build-sdk-meson.txt
+++ b/doc/build-sdk-meson.txt
@@ -132,7 +132,7 @@  Installing the Compiled Files
 
 Use ``ninja install`` to install the required DPDK files onto the system.
 The install prefix defaults to ``/usr/local`` but can be used as with other -options above. The environment variable ``DEST_DIR`` can be used to adjust
+options above. The environment variable ``DESTDIR`` can be used to 
+adjust
 the root directory for the install, for example when packaging.
 
 With the base install directory, the individual directories for libraries
--