From 15692c54372bd084b2b008f7f4860842d317931a Mon Sep 17 00:00:00 2001 From: Bartosz Sosnowski Date: Wed, 16 May 2018 13:59:48 +0200 Subject: [PATCH 1/2] doc: describe using multiple link-module on win Current description seems to suggest that only one linked-module can be provided. This modifies the example to show that multiple inked-modules can be used. --- BUILDING.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/BUILDING.md b/BUILDING.md index 9690e826c396f8..774a65633a8b20 100644 --- a/BUILDING.md +++ b/BUILDING.md @@ -423,8 +423,9 @@ $ ./configure --link-module '/root/myModule.js' --link-module './myModule2.js' ### Windows -To make `./myCustomModule.js` available via `require('myCustomModule')`. +To make `./myModule.js` available via `require('myModule')` and +`./myModule2.js` available via `require('myModule2')` ```console -> .\vcbuild link-module './myCustomModule.js' +> .\vcbuild link-module './myModule.js' link-module './myModule2.js' ``` From e2f382a12f4d5275aa236432b704507af70fe2b3 Mon Sep 17 00:00:00 2001 From: Bartosz Sosnowski Date: Wed, 16 May 2018 19:05:55 +0200 Subject: [PATCH 2/2] fixup: add colon --- BUILDING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BUILDING.md b/BUILDING.md index 774a65633a8b20..84688202e0c7a5 100644 --- a/BUILDING.md +++ b/BUILDING.md @@ -424,7 +424,7 @@ $ ./configure --link-module '/root/myModule.js' --link-module './myModule2.js' ### Windows To make `./myModule.js` available via `require('myModule')` and -`./myModule2.js` available via `require('myModule2')` +`./myModule2.js` available via `require('myModule2')`: ```console > .\vcbuild link-module './myModule.js' link-module './myModule2.js'