diff options
author | Kristien Nielsen <knielsen@knielsen-hq.org> | 2018-04-10 19:38:14 +0300 |
---|---|---|
committer | Otto Kekäläinen <otto@mariadb.org> | 2018-05-28 11:32:21 +0300 |
commit | c902d5a4ded2a492eb47379910111717dbded2d3 (patch) | |
tree | 2a0780cdaf92d776481fb0173a9a605e945776bc /debian/rules | |
parent | 64094e12c0e265e4e41ff1d780598ba945344dc6 (diff) | |
download | mariadb-git-c902d5a4ded2a492eb47379910111717dbded2d3.tar.gz |
Apply debian/patches/61_replace_dash_with_bash_mbug675185.dpatch
We have carried along this patch as a patch inside our sources
since 2012 (commit cfd4fcb0bc3d).
The validity of this has thus been vetted in production for years
and the review done now did not find otherwise.
A race in dash causes mysqld_safe to occasionally loop infinitely.
Fix by using bash instead.
https://bugs.launchpad.net/ubuntu/+source/mysql-dfsg-5.0/+bug/675185
As this is the last patch, we can also clean away usage of dpatch.
Diffstat (limited to 'debian/rules')
-rwxr-xr-x | debian/rules | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/debian/rules b/debian/rules index b4ef2e5da6d..4c29038cd2f 100755 --- a/debian/rules +++ b/debian/rules @@ -182,6 +182,6 @@ get-orig-source: # white list file only starting from Debian Stretch and Ubuntu Xenial. # To find more, grep build logs for 'but is not installed to anywhere'. %: - dh $@ --parallel --with dpatch --with systemd --list-missing + dh $@ --parallel --with systemd --list-missing # vim: ts=8 |