doc: fix overriding of prefix option

Make the example in the "Building a debug build" section work as
intended.

Fixes: https://github.com/nodejs/node/issues/30477

PR-URL: https://github.com/nodejs/node/pull/30518
Reviewed-By: David Carlier <devnexen@gmail.com>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
This commit is contained in:
Luigi Pinca 2019-11-17 12:15:21 +01:00 committed by Trivikram Kamat
parent a7c7c703af
commit f4b240f012

View File

@ -476,7 +476,7 @@ To use the debug build with all the normal dependencies overwrite the release
version in the install directory:
``` console
$ make install --prefix=/opt/node-debug/
$ make install PREFIX=/opt/node-debug/
$ cp -a -f out/Debug/node /opt/node-debug/node
```