diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-02-09 16:01:53 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-02-09 16:01:53 +0100 |
commit | 70762fe16bc68f3cfe02adb1b791a4dbae12d27d (patch) | |
tree | 95160788d5035e94f2a82ea23b8b169204cf714c | |
parent | 8fdd13f18a8268aef61c5634eb2b540f37af257d (diff) | |
download | samba-70762fe16bc68f3cfe02adb1b791a4dbae12d27d.tar.gz samba-70762fe16bc68f3cfe02adb1b791a4dbae12d27d.tar.bz2 samba-70762fe16bc68f3cfe02adb1b791a4dbae12d27d.zip |
Support 'mkinclude' command in .mk files.
(This used to be commit ee7f54c86d2b467869db8dea33f60e19ed3c742f)
-rw-r--r-- | source4/build/smb_build/config_mk.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source4/build/smb_build/config_mk.pm b/source4/build/smb_build/config_mk.pm index aa075490bc..b7dc9697a9 100644 --- a/source4/build/smb_build/config_mk.pm +++ b/source4/build/smb_build/config_mk.pm @@ -251,6 +251,8 @@ sub run_config_mk($$$$) next; } + $line =~ s/^mkinclude /include /; + # empty line if ($line =~ /^[ \t]*$/) { $section = "GLOBAL"; |