diff options
author | unknown <lenz@mysql.com> | 2002-10-02 12:56:16 +0200 |
---|---|---|
committer | unknown <lenz@mysql.com> | 2002-10-02 12:56:16 +0200 |
commit | d3664b024c10f06cba8570b6db552f71e9e4ff0f (patch) | |
tree | b8293460f424ceaed7daed756ba9d70518cecefe /scripts | |
parent | 00b8917cce4b243072a689cc4b8cfa1bd0470791 (diff) | |
download | mariadb-git-d3664b024c10f06cba8570b6db552f71e9e4ff0f.tar.gz |
- small modification to scripts/make_binary_distribution.sh (add the
up-to-date BK changelog instead of sql/ChangeLog, add LICENSE if
available)
scripts/make_binary_distribution.sh:
- Don't include sql/ChangeLog in the binary distribution (it's not
updated anymore since we've moved to BK)
- Include the BK ChangeLog from top level directory instead, if it exists
- also add the LICENSE file to the binary distribution, if it exists
(required for the non-GPL builds)
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/make_binary_distribution.sh | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/scripts/make_binary_distribution.sh b/scripts/make_binary_distribution.sh index 2617a7971dc..e5d7f20c6df 100644 --- a/scripts/make_binary_distribution.sh +++ b/scripts/make_binary_distribution.sh @@ -54,10 +54,13 @@ mkdir $BASE $BASE/bin $BASE/data $BASE/data/mysql $BASE/data/test \ chmod o-rwx $BASE/data $BASE/data/* -for i in sql/ChangeLog COPYING COPYING.LIB README Docs/INSTALL-BINARY \ - Docs/manual.html Docs/manual.txt Docs/manual_toc.html +for i in ChangeLog COPYING COPYING.LIB README Docs/INSTALL-BINARY \ + LICENSE Docs/manual.html Docs/manual.txt Docs/manual_toc.html do - $CP $i $BASE + if [ -f $i ] + then + $CP $i $BASE + fi done for i in extra/comp_err extra/replace extra/perror extra/resolveip \ |