summaryrefslogtreecommitdiff
path: root/BUILDING.md
diff options
context:
space:
mode:
authorLuigi Pinca <luigipinca@gmail.com>2019-11-17 12:15:21 +0100
committerTrivikram Kamat <16024985+trivikr@users.noreply.github.com>2019-11-20 16:51:48 -0800
commitf4b240f01276126b76978bb1d69cf79dd9e2cf6c (patch)
tree01a8f7297a053333c37945b2d8dc65dbda19c9a0 /BUILDING.md
parenta7c7c703aff362f06ef5d49451a0f79fd289910f (diff)
downloadandroid-node-v8-f4b240f01276126b76978bb1d69cf79dd9e2cf6c.tar.gz
android-node-v8-f4b240f01276126b76978bb1d69cf79dd9e2cf6c.tar.bz2
android-node-v8-f4b240f01276126b76978bb1d69cf79dd9e2cf6c.zip
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>
Diffstat (limited to 'BUILDING.md')
-rw-r--r--BUILDING.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/BUILDING.md b/BUILDING.md
index 07b51b87cf..08b75855ea 100644
--- a/BUILDING.md
+++ b/BUILDING.md
@@ -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
```