From c7e98955d687c9b3011fb7a78e131bcd89ca0804 Mon Sep 17 00:00:00 2001 From: Jeremy Soller <jeremy@system76.com> Date: Mon, 31 Dec 2018 18:30:32 -0700 Subject: [PATCH] Fix library output of llvm-config --- bin/x86_64-unknown-redox-llvm-config | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bin/x86_64-unknown-redox-llvm-config b/bin/x86_64-unknown-redox-llvm-config index fdb2a68f5..e17c23b91 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") -- GitLab