]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-40280: clean and ignore .wasm files (GH-29794)
authorChristian Heimes <christian@python.org>
Fri, 26 Nov 2021 13:29:46 +0000 (15:29 +0200)
committerGitHub <noreply@github.com>
Fri, 26 Nov 2021 13:29:46 +0000 (14:29 +0100)
.gitignore
Makefile.pre.in

index 0831c58d3674897eba2b63eaa5b52ecc6d86bc17..cfd3163cd1818dd4adc22de12a8ce94b1ad42f85 100644 (file)
@@ -10,6 +10,7 @@
 *.so.*
 *.dylib
 *.dll
+*.wasm
 *.orig
 *.pyc
 *.pyd
index be9f68d4e02858aed1bcc2407ab52cfe6ec0118a..75d3bce946f42e3125a9f729e2bf2ab6b0ce2d2d 100644 (file)
@@ -2284,6 +2284,7 @@ clean-retain-profile: pycremoval
        find . -name '*.[oa]' -exec rm -f {} ';'
        find . -name '*.s[ol]' -exec rm -f {} ';'
        find . -name '*.so.[0-9]*.[0-9]*' -exec rm -f {} ';'
+       find . -name '*.wasm' -exec rm -f {} ';'
        find . -name '*.lst' -exec rm -f {} ';'
        find build -name 'fficonfig.h' -exec rm -f {} ';' || true
        find build -name '*.py' -exec rm -f {} ';' || true