diff options
author | Laurent Bigonville <bigon@debian.org> | 2013-10-28 23:38:51 +0100 |
---|---|---|
committer | Laurent Bigonville <bigon@debian.org> | 2013-10-28 23:38:51 +0100 |
commit | 5b0f451697eaccf2182c3d53b2a0309e153a3d3c (patch) | |
tree | 8ad1a6e8f04aa40e9682674a5e073b9953725fd2 | |
parent | 7ff83b9bd079e7fa12cbbd94528f96a8bd58706a (diff) | |
download | dbus-5b0f451697eaccf2182c3d53b2a0309e153a3d3c.tar.gz |
debian/rules: Re-add udeb_configure_flags that was lost during merge
-rwxr-xr-x | debian/rules | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/debian/rules b/debian/rules index 1db7d91e..a89adf11 100755 --- a/debian/rules +++ b/debian/rules @@ -42,6 +42,20 @@ debug_configure_flags := \ --libdir='$${prefix}/lib' \ $(NULL) +udeb_configure_flags := \ + $(normal_configure_flags) \ + --disable-asserts \ + --disable-checks \ + --disable-doxygen-docs \ + --disable-libaudit \ + --disable-selinux \ + --disable-systemd \ + --disable-tests \ + --disable-verbose-mode \ + --disable-xml-docs \ + CFLAGS='$(CFLAGS) -Os' \ + $(NULL) + ifeq ($(filter nodocs,$(DEB_BUILD_OPTIONS))$(filter stage1,$(DEB_BUILD_PROFILE)),) # documentation enabled normal_configure_flags += \ |