From d3664b024c10f06cba8570b6db552f71e9e4ff0f Mon Sep 17 00:00:00 2001 From: unknown Date: Wed, 2 Oct 2002 12:56:16 +0200 Subject: - 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) --- scripts/make_binary_distribution.sh | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'scripts/make_binary_distribution.sh') 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 \ -- cgit v1.2.1