diff options
author | Alexander Nozdrin <alexander.nozdrin@oracle.com> | 2010-11-24 13:23:44 +0300 |
---|---|---|
committer | Alexander Nozdrin <alexander.nozdrin@oracle.com> | 2010-11-24 13:23:44 +0300 |
commit | 9c7629fda39a63300bc288806cbd9d924611c532 (patch) | |
tree | 7cfdb826dde4f4515f7f806908ac679e40e7140b /scripts | |
parent | 7bf81b15c61ac9c81c5cb59629aeba9ffe97006e (diff) | |
parent | 1e43b94c70841866e6c0dc7bcb05bfa2c248faa7 (diff) | |
download | mariadb-git-9c7629fda39a63300bc288806cbd9d924611c532.tar.gz |
Merge from mysql-5.1-bugteam.
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/make_binary_distribution.sh | 4 | ||||
-rwxr-xr-x | scripts/make_win_bin_dist | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/scripts/make_binary_distribution.sh b/scripts/make_binary_distribution.sh index 951699317fd..455bc93e642 100644 --- a/scripts/make_binary_distribution.sh +++ b/scripts/make_binary_distribution.sh @@ -304,8 +304,8 @@ mv $DEST/bin/mysql_install_db $DEST/scripts/ # Copy readme and license files cp README Docs/INSTALL-BINARY $DEST/ -if [ -f COPYING -a -f EXCEPTIONS-CLIENT ] ; then - cp COPYING EXCEPTIONS-CLIENT $DEST/ +if [ -f COPYING ] ; then + cp COPYING $DEST/ elif [ -f LICENSE.mysql ] ; then cp LICENSE.mysql $DEST/ else diff --git a/scripts/make_win_bin_dist b/scripts/make_win_bin_dist index aa106a3dfc4..3174d61792a 100755 --- a/scripts/make_win_bin_dist +++ b/scripts/make_win_bin_dist @@ -183,8 +183,8 @@ cp ChangeLog $DESTDIR/Docs/ || /bin/true cp support-files/my-*.ini $DESTDIR/ if [ -f COPYING ] ; then - cp COPYING EXCEPTIONS-CLIENT $DESTDIR/ - cp COPYING $DESTDIR/Docs/ + cp COPYING $DESTDIR/ + cp COPYING $DESTDIR/Docs/ fi # ---------------------------------------------------------------------- |