summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorBill Wendling <wendling@ncsa.uiuc.edu>2001-08-02 17:27:56 (GMT)
committerBill Wendling <wendling@ncsa.uiuc.edu>2001-08-02 17:27:56 (GMT)
commit0b850332e9ee4ff638e8468ed8267e93ce325408 (patch)
tree7e2c9eb6821873e7bf5661a9147edd34d54731c6 /bin
parentf45e4b1f94b3c99da74c26b99a69aede7148e943 (diff)
downloadhdf5-0b850332e9ee4ff638e8468ed8267e93ce325408.zip
hdf5-0b850332e9ee4ff638e8468ed8267e93ce325408.tar.gz
hdf5-0b850332e9ee4ff638e8468ed8267e93ce325408.tar.bz2
[svn-r4305]
Purpose: Back-port of Bug Fix Description: Back port of hte bug fix for matching anything when we really only wanted to match a ".". Solution: Escaped the "." with "\." in the matching string. Platforms tested: Linux
Diffstat (limited to 'bin')
-rwxr-xr-xbin/dependencies6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/dependencies b/bin/dependencies
index 248c579..50f362a 100755
--- a/bin/dependencies
+++ b/bin/dependencies
@@ -13,13 +13,13 @@ my $top_builddir;
while ($_ = shift @ARGV) {
if (/^--srcdir=([^ \t\n]*)/) {
$srcdir = $1;
- $srcdir = "\\$srcdir" if $srcdir =~ /^\./;
+ $srcdir =~ s/\./\\\./g;
} elsif (/^--top_srcdir=([^ \t\n]*)/) {
$top_srcdir = $1;
- $top_srcdir = "\\$top_srcdir" if $top_srcdir =~ /^\./;
+ $top_srcdir =~ s/\./\\\./g;
} elsif (/^--top_builddir=([^ \t\n]*)/) {
$top_builddir = $1;
- $top_builddir = "\\$top_builddir" if $top_builddir =~ /^\./;
+ $top_builddir =~ s/\./\\\./g;
} else {
$depend_file = $_;
$new_depend_file = "$_.new";