diff --git a/bin/x86_64-unknown-redox-llvm-config b/bin/x86_64-unknown-redox-llvm-config index fdb2a68f5db6d83440757505eee805455fe3f5e2..e17c23b91845c7b8aed56f0f0d9625793bbb56da 100755 --- a/bin/x86_64-unknown-redox-llvm-config +++ b/bin/x86_64-unknown-redox-llvm-config @@ -118,8 +118,7 @@ elif args[0] == "--libs": libs = [] for component in args[1:]: for lib in components[component].split(" "): - if not lib in libs: - libs.append(lib) + libs.append(lib) print(" ".join(libs)) elif args[0] == "--shared-mode": print("static")