From f65db870dcef987c999762a753520e80b505360a Mon Sep 17 00:00:00 2001 From: Stephan Beal Date: Fri, 15 Dec 2023 13:38:47 +0000 Subject: [PATCH] Correct --enable-sab flag in ext/wasm/GNUmakefile to fix a silent alhttpd args-parsing error. --- ext/wasm/GNUmakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/wasm/GNUmakefile b/ext/wasm/GNUmakefile index 3ef478612c..0510af74ab 100644 --- a/ext/wasm/GNUmakefile +++ b/ext/wasm/GNUmakefile @@ -1087,4 +1087,4 @@ endif # Run local web server for the test/demo pages. httpd: - althttpd -max-age 1 -enable-sab -page index.html + althttpd -max-age 1 -enable-sab 1 -page index.html -- 2.11.4.GIT