diff options
author | unknown <monty@work.mysql.com> | 2000-09-08 09:49:25 +0200 |
---|---|---|
committer | unknown <monty@work.mysql.com> | 2000-09-08 09:49:25 +0200 |
commit | 21394fb42a00d2ac26b081fe94328eb33e09dcf9 (patch) | |
tree | 9c42e9df08c547c0c93d61231b94578a93e03443 /Build-tools/Do-all-build-steps | |
parent | 6c99b1cd7bccedff7b090bad9080722d201ac672 (diff) | |
download | mariadb-git-21394fb42a00d2ac26b081fe94328eb33e09dcf9.tar.gz |
Fixes for 3.23.24mysql-3.23.24-beta
Build-tools/Do-all-build-steps:
Fixed type in chmod
scripts/make_binary_distribution.sh:
All libmysqlclient_r files wheren't included
Diffstat (limited to 'Build-tools/Do-all-build-steps')
-rwxr-xr-x | Build-tools/Do-all-build-steps | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Build-tools/Do-all-build-steps b/Build-tools/Do-all-build-steps index ba19bf1537e..a5b1457e359 100755 --- a/Build-tools/Do-all-build-steps +++ b/Build-tools/Do-all-build-steps @@ -26,7 +26,7 @@ cd "$WD" # Create a build directory tree bk export $BD cd "$BD" -chmod -R a+rw,g+rw . +chmod -R u+rw,g+rw . #Make it easy to remove an old build umask 002 |