diff options
author | Chris Lattner <sabre@nondot.org> | 2006-06-02 23:43:27 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-06-02 23:43:27 +0000 |
commit | 2e1f0ed1510e10528c661d449137a5620e4fe377 (patch) | |
tree | 80d3d1a9c609fd8d29e2d692e2eaac0e663b8ac7 | |
parent | ecbd242833cadb8b22006143d5ee4c1152bc81e3 (diff) | |
download | external_llvm-2e1f0ed1510e10528c661d449137a5620e4fe377.zip external_llvm-2e1f0ed1510e10528c661d449137a5620e4fe377.tar.gz external_llvm-2e1f0ed1510e10528c661d449137a5620e4fe377.tar.bz2 |
temporarily add back this option, I will remove it in a couple days
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28675 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | tools/llvm-config/llvm-config.in.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/llvm-config/llvm-config.in.in b/tools/llvm-config/llvm-config.in.in index c799983..930d25e 100644 --- a/tools/llvm-config/llvm-config.in.in +++ b/tools/llvm-config/llvm-config.in.in @@ -95,6 +95,8 @@ 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") { |