From c6e73e5b0c1e793031526a8995804ccf09249bb0 Mon Sep 17 00:00:00 2001 From: Luigi Pinca Date: Sun, 17 Nov 2019 12:15:21 +0100 Subject: [PATCH] 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 --- BUILDING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BUILDING.md b/BUILDING.md index 07b51b87cfc4ea..08b75855ea6ee0 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 ```