diff options
author | Chris Lattner <sabre@nondot.org> | 2006-06-07 00:43:18 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-06-07 00:43:18 +0000 |
commit | dc050090ea870311cfd5a39e8e5d64d2803041bd (patch) | |
tree | e637465620e80ecad1af67dbaa21f4b8c9c79ddb | |
parent | 3e347f28f1a4fd96cb0d8728e1867ea09c9ec70f (diff) |
Remove useless noop argument
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28706 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | tools/llvm-config/llvm-config.in.in | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tools/llvm-config/llvm-config.in.in b/tools/llvm-config/llvm-config.in.in index 5f9c9d9b22..e83024e2e7 100644 --- a/tools/llvm-config/llvm-config.in.in +++ b/tools/llvm-config/llvm-config.in.in @@ -98,8 +98,6 @@ foreach my $arg (@ARGV) { if ($arg =~ /^-/) { if ($arg eq "--version") { $has_opt = 1; print "$VERSION\n"; - } elsif ($arg eq "--use-current-dir-as-prefix") { - # NOOP, remove! } elsif ($arg eq "--prefix") { $has_opt = 1; print "$PREFIX\n"; } elsif ($arg eq "--bindir") { |