From 9c2724bce5c6a904d1bffdb55921071163812a0e Mon Sep 17 00:00:00 2001 From: Nirbheek Chauhan Date: Sat, 20 Jul 2019 14:02:15 +0000 Subject: Add optional progress bar when generating build.ninja --- mesonbuild/compilers/compilers.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'mesonbuild/compilers') 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) -- cgit v1.1