aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsbrandt <sbrandt@043a8217-7a68-40fe-abfd-36aa7d4fa6a8>2014-09-18 20:04:58 +0000
committersbrandt <sbrandt@043a8217-7a68-40fe-abfd-36aa7d4fa6a8>2014-09-18 20:04:58 +0000
commite91db861faf29818fbb8909b7acddec3560f6092 (patch)
tree882a599c9964eace48ef31a7a50c5e53bfc09a0f
parent429bfa52f9b9c902102e3769748d66f988eddc32 (diff)
Bug #1652: Change pattern from \w to \S in order to allow matching of dashes.
git-svn-id: http://svn.cactuscode.org/projects/ExternalLibraries/MPI/trunk@48 043a8217-7a68-40fe-abfd-36aa7d4fa6a8
-rw-r--r--configure.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.pl b/configure.pl
index b100fbe..34c4e2d 100644
--- a/configure.pl
+++ b/configure.pl
@@ -212,7 +212,7 @@ if($mpi_info_set) {
while($info =~ /\s-I\s*(\S+)/g) {
push @incdirs, $1;
}
- while($info =~ /\s-l(\w+)/g) {
+ while($info =~ /\s-l(\S+)/g) {
push @libs, $1;
}