diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-05-21 12:02:02 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-05-21 12:02:02 +0200 |
commit | 12d32fb18ee3fe15ba4f7e26f49dcd8df974e089 (patch) | |
tree | bdf2660264cea37481c5724e790180ca16be8717 /source4/build/smb_build | |
parent | 6d4424cd45333c3029b0272528485dd2b3f8e620 (diff) | |
download | samba-12d32fb18ee3fe15ba4f7e26f49dcd8df974e089.tar.gz samba-12d32fb18ee3fe15ba4f7e26f49dcd8df974e089.tar.bz2 samba-12d32fb18ee3fe15ba4f7e26f49dcd8df974e089.zip |
Allow dots in .mk file section headers, fix docstring.
(This used to be commit bd3f3e7c85f1a92638d69379782aa7bfcecd9e2f)
Diffstat (limited to 'source4/build/smb_build')
-rw-r--r-- | source4/build/smb_build/config_mk.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/build/smb_build/config_mk.pm b/source4/build/smb_build/config_mk.pm index 88e24a5876..d28adb2e72 100644 --- a/source4/build/smb_build/config_mk.pm +++ b/source4/build/smb_build/config_mk.pm @@ -197,7 +197,7 @@ sub run_config_mk($$$$) $prev = ""; } - if ($line =~ /^\[([-a-zA-Z0-9_:]+)\][\t ]*$/) + if ($line =~ /^\[([-a-zA-Z0-9_.:]+)\][\t ]*$/) { $section = $1; $infragment = 0; |