From: Chris Lattner Date: Mon, 4 Sep 2006 05:35:23 +0000 (+0000) Subject: Allow things like --libs CBackend X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=54eae9e1ec35db90a6f33dd8053c533861771bb6;hp=ebfc3a9fc22b741f67e264409b9a882a864f9fc2;p=oota-llvm.git Allow things like --libs CBackend git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30089 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/llvm-config/llvm-config.in.in b/tools/llvm-config/llvm-config.in.in index 51b79ec9262..e24b1c327c5 100644 --- a/tools/llvm-config/llvm-config.in.in +++ b/tools/llvm-config/llvm-config.in.in @@ -143,6 +143,9 @@ if (@components == 0) { push @components, 'all'; } +# Force component names to lower case. +@components = map lc, @components; + # Handle any arguments which require building our dependency graph. if ($want_libs || $want_libnames || $want_libfiles) { my @libs = expand_dependencies(@components);