From 5f7b4022aec2fbe2a6c5e8967c72c6d9397f439d Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 1 May 2019 17:51:57 +0100 Subject: [PATCH] Performance: remove unused definition files to reduce compile time for memfs.c --- memfs.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/memfs.py b/memfs.py index a1bd41b1b..4cc140304 100755 --- a/memfs.py +++ b/memfs.py @@ -8,7 +8,8 @@ import binascii assert len(sys.argv) > 2 # For now exclude GRIB3 as it is still experimental -EXCLUDED = ['grib3'] +# The BUFR codetables is not used in the engine +EXCLUDED = ['grib3', 'codetables'] dirs = [os.path.realpath(x) for x in sys.argv[1:-1]] print(dirs)