diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2019-07-20 14:02:15 +0000 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2019-07-20 17:02:15 +0300 |
commit | 9c2724bce5c6a904d1bffdb55921071163812a0e (patch) | |
tree | 57cd3503d9b72839162fee20154559bee181e472 /mesonbuild/compilers/compilers.py | |
parent | 4200afc74d1e6ba6d117e900799d0d82a85bae8a (diff) | |
download | meson-9c2724bce5c6a904d1bffdb55921071163812a0e.zip meson-9c2724bce5c6a904d1bffdb55921071163812a0e.tar.gz meson-9c2724bce5c6a904d1bffdb55921071163812a0e.tar.bz2 |
Add optional progress bar when generating build.ninja
Diffstat (limited to 'mesonbuild/compilers/compilers.py')
-rw-r--r-- | mesonbuild/compilers/compilers.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mesonbuild/compilers/compilers.py b/mesonbuild/compilers/compilers.py index 71d96d4..df448f0 100644 --- a/mesonbuild/compilers/compilers.py +++ b/mesonbuild/compilers/compilers.py @@ -574,9 +574,9 @@ class CompilerArgs(list): def append_direct(self, arg): ''' - Append the specified argument without any reordering or de-dup - except for absolute paths where the order of include search directories - is not relevant + Append the specified argument without any reordering or de-dup except + for absolute paths to libraries, etc, which can always be de-duped + safely. ''' if os.path.isabs(arg): self.append(arg) |