diff options
Diffstat (limited to 'source4/build/smb_build/config_mk.pm')
-rw-r--r-- | source4/build/smb_build/config_mk.pm | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/source4/build/smb_build/config_mk.pm b/source4/build/smb_build/config_mk.pm index c5a035f375..49b93a5d98 100644 --- a/source4/build/smb_build/config_mk.pm +++ b/source4/build/smb_build/config_mk.pm @@ -6,7 +6,7 @@ ### Released under the GNU GPL ### ########################################################### -package config_mk; +package smb_build::config_mk; use smb_build::input; use strict; @@ -33,6 +33,10 @@ my %attribute_types = ( "MANPAGE" => "string" ); +use vars qw(@parsed_files); + +@parsed_files = (); + ########################################################### # The parsing function which parses the file # @@ -48,6 +52,8 @@ sub run_config_mk($$) my $infragment = 0; my $section = "GLOBAL"; my $makefile = ""; + + push (@parsed_files, $filename); open(CONFIG_MK, $filename) or die("Can't open `$filename'\n"); my @lines = <CONFIG_MK>; |