diff options
author | unknown <patg@krsna.patg.net> | 2004-06-15 23:05:12 -0700 |
---|---|---|
committer | unknown <patg@krsna.patg.net> | 2004-06-15 23:05:12 -0700 |
commit | e4042c25ef4c7162046e953198dfd56bc80db1f8 (patch) | |
tree | c12888ca0a136379b523ce30a2590c2b9466664b /Build-tools/mysql-copyright-2 | |
parent | 518c9236257783740efef6db6423fbb73fdff936 (diff) | |
download | mariadb-git-e4042c25ef4c7162046e953198dfd56bc80db1f8.tar.gz |
mysql-copyright:
* added 'local $/' to keep from undef-ing $/ (the newline setting) for the whole script
* removed the target dir removal (target dir is not a temp dir!)
* use split to create filelist (cleaner way than using chomp!)
* removed use of chomp because it caused some file names to be mangled
* print out which file is being processed if verbose
mysql-copyright-2:
* added cpp to list of files to be processed (for windows archives)
Build-tools/mysql-copyright-2:
* added cpp to list of files to be processed (for windows archives)
Build-tools/mysql-copyright:
* added 'local $/' to keep from undef-ing $/ (the newline setting) for the whole script
* removed the target dir removal (target dir is not a temp dir!)
* use split to create filelist (cleaner way than using chomp!)
* removed use of chomp because it caused some file names to be mangled
* print out which file is being processed if verbose
Diffstat (limited to 'Build-tools/mysql-copyright-2')
-rwxr-xr-x | Build-tools/mysql-copyright-2 | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Build-tools/mysql-copyright-2 b/Build-tools/mysql-copyright-2 index e946ed217d1..a1a870526da 100755 --- a/Build-tools/mysql-copyright-2 +++ b/Build-tools/mysql-copyright-2 @@ -89,6 +89,7 @@ sub add_copyright elsif ($ARGV =~ /\.c$/ || $ARGV =~ /\.cc$/ || $ARGV =~ /\.h$/ || + $ARGV =~ /\.cpp$/ || $ARGV =~ /\.yy$/) { $start_copyright="/* "; |