r9142: fix the output to the new names
authorStefan Metzmacher <metze@samba.org>
Fri, 5 Aug 2005 21:44:10 +0000 (21:44 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 18:31:22 +0000 (13:31 -0500)
metze
(This used to be commit bab33aa993830db85faf9be6f02832cf4ad8aa19)

source4/build/smb_build/makefile.pm
source4/build/smb_build/smb_build_h.pm

index 59ae6c5c041334ac25e8d766f9a618a029053b02..19c8486bf89a05332bc8a92fa0b93097a7814962 100644 (file)
@@ -573,9 +573,9 @@ sub _prepare_makefile_in($)
        my ($CTX) = @_;
        my $output;
 
-       $output  = "########################################\n";
-       $output .= "# Autogenerated by config.smb_build.pl #\n";
-       $output .= "########################################\n";
+       $output  = "############################################\n";
+       $output .= "# Autogenerated by build/smb_build/main.pl #\n";
+       $output .= "############################################\n";
        $output .= "\n";
 
        $output .= _prepare_path_vars();
@@ -627,7 +627,7 @@ sub create_makefile_in($$$)
        print MAKEFILE_IN _prepare_makefile_in($CTX) . $mk;
        close(MAKEFILE_IN);
 
-       print "config.smb_build.pl: creating $file\n";
+       print "build/smb_build/main.pl: creating $file\n";
        return; 
 }
 
index b6ced52034a8318606f710d64bd13cab9b90e98d..932f566bdf6899ec28c09c6cdea48c0703b80926 100644 (file)
@@ -100,7 +100,7 @@ sub _prepare_smb_build_h($)
 sub create_smb_build_h($$)
 {
        my ($CTX, $file) = @_;
-       my $output = "/* autogenerated by config.smb_build.pl */\n";
+       my $output = "/* autogenerated by build/smb_build/main.pl */\n";
 
        $output .= _prepare_smb_build_h($CTX);
 
@@ -108,7 +108,7 @@ sub create_smb_build_h($$)
        print SMB_BUILD_H $output;
        close(SMB_BUILD_H);
 
-       print "config.smb_build.pl: creating $file\n";
+       print "build/smb_build/main.pl: creating $file\n";
        return; 
 }
 1;