diff options
author | lenz@mysql.com <> | 2002-10-02 12:56:16 +0200 |
---|---|---|
committer | lenz@mysql.com <> | 2002-10-02 12:56:16 +0200 |
commit | bf5b57ad2b6ccb016b1d2d5d360262755b511598 (patch) | |
tree | b8293460f424ceaed7daed756ba9d70518cecefe /scripts | |
parent | a0ffbe60f6b84f660eddd97c0cccb995fddfe088 (diff) | |
download | mariadb-git-bf5b57ad2b6ccb016b1d2d5d360262755b511598.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)
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 \ |