Change wildcard . to literal . in regex for copying python.
authorZachary Turner <zturner@google.com>
Thu, 22 Jan 2015 20:30:29 +0000 (20:30 +0000)
committerZachary Turner <zturner@google.com>
Thu, 22 Jan 2015 20:30:29 +0000 (20:30 +0000)
commit35970976712c929adf9a0ff82eacc6b779110bf5
tree8a9fe0029f619e5de51bf86e22b0aa7d73cc37b4
parent75a4f35b2640b604f59c6df3b7dbe043c195cacd
Change wildcard . to literal . in regex for copying python.

On Windows we copy python27(_d).dll to the bin directory.  We do
this by looking at the PYTHON_LIBRARY specified by the user, which
is something like C:\foo\python27_d.lib, and replacing ".lib" with
".dll".  But ".lib" as a regex will also match "flib", etc.  So
make this a literal . instead of a wildcard .

llvm-svn: 226858
lldb/scripts/CMakeLists.txt