From 1d77e041a0ec9aca80806a529ccce728a794ab0d Mon Sep 17 00:00:00 2001 From: Matt Blum Date: Fri, 23 May 2025 11:01:31 -0500 Subject: [PATCH] add spaces in readme to clarify nginx compile command args with qjs --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 10ef0ba74..08a7acc6a 100644 --- a/README.md +++ b/README.md @@ -317,7 +317,7 @@ auto/configure --add-dynamic-module=/nginx To build with [QuickJS](https://nginx.org/en/docs/njs/engine.html) support, provide include and library path using `--with-cc-opt=` and `--with-ld-opt=` options: ```bash auto/configure --add-dynamic-module=/nginx \ - --with-cc-opt="-I" --with-ld-opt="-L" + --with-cc-opt="-I " --with-ld-opt="-L " ``` > [!WARNING]