Commit d3664b02 authored by unknown's avatar unknown

- 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)
parent 00b8917c
......@@ -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 \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment