From d43af27eb2dfb08b9fae659031ad42e6c95f362d Mon Sep 17 00:00:00 2001 From: Konstantin Nazarov Date: Sun, 8 Oct 2023 17:34:08 +0100 Subject: [PATCH] Fix a typo in the static python article --- content/posts/statically_linked_python_interpreter/note.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/posts/statically_linked_python_interpreter/note.md b/content/posts/statically_linked_python_interpreter/note.md index 61845ef..0e9c27a 100644 --- a/content/posts/statically_linked_python_interpreter/note.md +++ b/content/posts/statically_linked_python_interpreter/note.md @@ -50,7 +50,7 @@ you'd see that there's a configuration option `*@MODULE_BUILDTYPE@*`, which cont be built as shared or static libraries. The wiki page on Static Linking recommends manually modifying the generated files, but this is not needed in the latest version. What you need is to do this: -```sh +``` MODULE_BUILDTYPE=static ./configure ```