diff options
| author | Friedemann Kleint <Friedemann.Kleint@qt.io> | 2024-01-16 15:11:37 +0100 |
|---|---|---|
| committer | Friedemann Kleint <Friedemann.Kleint@qt.io> | 2024-01-18 09:43:17 +0100 |
| commit | a52859814c39730532a6ffe912ce187949297eb9 (patch) | |
| tree | 591db4fae2e7aaf44073501c7a683607feca0c66 /build_scripts/options.py | |
| parent | 6a645d848a78c74151a26b934d62583e9fd2e936 (diff) | |
build scripts: Deprecate option --ignore_git
Change-Id: Ia81680cc19efbab75c517a4c20d4f83445c84e6c
Reviewed-by: Shyamnath Premnadh <Shyamnath.Premnadh@qt.io>
Diffstat (limited to 'build_scripts/options.py')
| -rw-r--r-- | build_scripts/options.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/build_scripts/options.py b/build_scripts/options.py index d42b1514f..cb66d44cb 100644 --- a/build_scripts/options.py +++ b/build_scripts/options.py @@ -370,7 +370,8 @@ class CommandMixin(object): OPTION['NO_STRIP'] = self.no_strip OPTION['ONLYPACKAGE'] = self.only_package OPTION['STANDALONE'] = self.standalone - OPTION['IGNOREGIT'] = self.ignore_git + if self.ignore_git: + _warn_deprecated_option('ignore_git') OPTION['SKIP_DOCS'] = self.skip_docs OPTION['BUILD_DOCS'] = self.build_docs OPTION['BUILDTESTS'] = self.build_tests |
