diff options
author | unknown <lenz@mysql.com> | 2002-10-02 13:06:04 +0200 |
---|---|---|
committer | unknown <lenz@mysql.com> | 2002-10-02 13:06:04 +0200 |
commit | 8bc99030a1f163f02e0eaa743b343d18e075be22 (patch) | |
tree | 9506558342bd58492659f7b1e05e9349e54838a2 /scripts/make_binary_distribution.sh | |
parent | a9acc8e634db4a461ed39ef89a834147f0857af5 (diff) | |
download | mariadb-git-8bc99030a1f163f02e0eaa743b343d18e075be22.tar.gz |
- Small fix for support-files/mysql.spec.sh
- Updated scripts/make_binary_distribution.sh to include the correct
ChangeLog and the LICENSE file for non-GPL builds
scripts/make_binary_distribution.sh:
- Add BK ChangeLog (if existing) instead of sql/ChangeLog, which is
not updated anymore since we switched to BK
- Add LICENSE, if exists (required for non-GPL binary builds)
support-files/mysql.spec.sh:
- MySQL-Max now requires MySQL to be the same version (to
avoid version mismatches e.g. mixing 3.23.xx and 4.0 packages)
Diffstat (limited to 'scripts/make_binary_distribution.sh')
-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 99eb9e42967..c67de656600 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 \ |