diff options
author | unknown <tim@threads.polyesthetic.msg> | 2001-02-05 21:58:20 -0500 |
---|---|---|
committer | unknown <tim@threads.polyesthetic.msg> | 2001-02-05 21:58:20 -0500 |
commit | c8908b8fd1d23b9b5fd5681b018c1bebe1957a32 (patch) | |
tree | 136e517705a178136a96d23b2026a02d9d18fb79 /Build-tools/mysql-copyright | |
parent | 6eaef0598fba2348c1170b5d88743d9352316f5f (diff) | |
download | mariadb-git-c8908b8fd1d23b9b5fd5681b018c1bebe1957a32.tar.gz |
Remove several uses of cp -a, and fix broken dist-hook in sql-bench.
Build-tools/mysql-copyright:
remove use of cp -a.
sql-bench/Makefile.am:
fix broken dist-hook target (brain-o)
sql/share/Makefile.am:
remove use of cp -a.
Diffstat (limited to 'Build-tools/mysql-copyright')
-rwxr-xr-x | Build-tools/mysql-copyright | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Build-tools/mysql-copyright b/Build-tools/mysql-copyright index f481325bebb..df819b20fa1 100755 --- a/Build-tools/mysql-copyright +++ b/Build-tools/mysql-copyright @@ -97,7 +97,7 @@ sub main # on the toplevel of the directory instead. file 'PUBLIC' shouldn't # exist in the new mysql distributions, but let's be sure.. `rm -f $destdir/PUBLIC`; - `cp -a $WD/Docs/LICENSE $destdir/`; + `cp -p $WD/Docs/LICENSE $destdir/`; # fix file copyrights &fix_usage_copyright(); |