diff options
author | Benjamin Barenblat <bbaren@debian.org> | 2018-11-23 13:09:57 -0500 |
---|---|---|
committer | Benjamin Barenblat <bbaren@debian.org> | 2018-11-23 13:09:57 -0500 |
commit | 1d88c83c58e92f29f48a9a14f9bd2d482a6f6056 (patch) | |
tree | baedf53b92c90ca20ea98899466da017a63b77b9 | |
parent | 491d5c5b687368c3d9db0d955cd0151f8d52e8f9 (diff) |
Don’t try to update the application database during installation
Make the build a bit more hermetic by avoiding application database
updates during the installation phase. (If you use sbuild, you don’t
care, but this should make things a bit nicer for people using debuild
and the like.)
-rwxr-xr-x | debian/rules | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/debian/rules b/debian/rules index 128cace..4b4a95b 100755 --- a/debian/rules +++ b/debian/rules @@ -14,4 +14,5 @@ override_dh_autoreconf: .PHONY: override_dh_auto_configure override_dh_auto_configure: dh_auto_configure -- --without-libappindicator --without-libmrss \ - --disable-debug --disable-silent-rules + --disable-debug --disable-desktop-database-update \ + --disable-silent-rules |