diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2005-10-21 21:00:02 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:45:08 -0500 |
commit | e0370ff3bc4df9812cae058101c44879b127f997 (patch) | |
tree | 20b52b530da49c5b6514204e9ad5d4abd6ec0b72 /source4 | |
parent | fff24f9ebde4c605f9cb390ed5ef939801a25cfa (diff) | |
download | samba-e0370ff3bc4df9812cae058101c44879b127f997.tar.gz samba-e0370ff3bc4df9812cae058101c44879b127f997.tar.bz2 samba-e0370ff3bc4df9812cae058101c44879b127f997.zip |
r11250: Fix a couple of issues in the heimdal/ dirs.
(This used to be commit f76374eba7d45b8ff2625914344e4b31ecdeca1d)
Diffstat (limited to 'source4')
-rw-r--r-- | source4/build/smb_build/output.pm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/source4/build/smb_build/output.pm b/source4/build/smb_build/output.pm index 309a027947..b1edf02c94 100644 --- a/source4/build/smb_build/output.pm +++ b/source4/build/smb_build/output.pm @@ -19,8 +19,7 @@ sub add_dir($$) foreach (@$files) { $_ = "$dir/$_"; - s/\/\//\//g; - s/\/([^\/\.]+)\/\.\.\//\//g; + s/([^\/\.]+)\/\.\.\///g; push (@ret, $_); } |