diff options
author | stephan <stephan@noemail.net> | 2024-10-18 12:31:21 +0000 |
---|---|---|
committer | stephan <stephan@noemail.net> | 2024-10-18 12:31:21 +0000 |
commit | 90675da34ab78016ab241a4e90951a2de85ee7a2 (patch) | |
tree | 300714f9b564eaadf3691f2736d2e7e3cbd329ea /ext/wasm | |
parent | f9a02e166aab5774062e9bd74592c516320ffc80 (diff) | |
download | sqlite-90675da34ab78016ab241a4e90951a2de85ee7a2.tar.gz sqlite-90675da34ab78016ab241a4e90951a2de85ee7a2.zip |
Remove a not-strictly-necessary 'undefine' invocation from ext/wasm/GNUmakefile, as it is not compatible with too-old versions of gmake. Resolves the problem reported in [forum:e57932e3ccdc2c9c | forum post e57932e3ccdc2c9c].
FossilOrigin-Name: a31a94644113c226a06316a3f95fb38b605821f1c123e2cda06ba90bfcacf59f
Diffstat (limited to 'ext/wasm')
-rw-r--r-- | ext/wasm/GNUmakefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/wasm/GNUmakefile b/ext/wasm/GNUmakefile index 00f1ee50a..12eb9d8bf 100644 --- a/ext/wasm/GNUmakefile +++ b/ext/wasm/GNUmakefile @@ -227,7 +227,7 @@ ifeq (1,$(barebones)) else wasm-bare-bones := 0 endif -undefine barebones +# undefine barebones # relatively new gmake feature, not ubiquitous # Common options for building sqlite3-wasm.c and speedtest1.c. # Explicit ENABLEs... |