summaryrefslogtreecommitdiff
path: root/debian/rules
diff options
context:
space:
mode:
Diffstat (limited to 'debian/rules')
-rwxr-xr-xdebian/rules9
1 files changed, 3 insertions, 6 deletions
diff --git a/debian/rules b/debian/rules
index 9f4dfd23..00f22caa 100755
--- a/debian/rules
+++ b/debian/rules
@@ -3,14 +3,11 @@
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
export DEB_LDFLAGS_MAINT_APPEND = -Wl,-O1 -Wl,-z,defs
-ifeq (,$(filter $(DEB_HOST_ARCH), hurd-i386 ia64 kfreebsd-amd64 kfreebsd-i386 sh4))
- ENABLE_WEBKIT = -Dwebkitgtk=true
-endif
-
%:
dh $@
override_dh_auto_configure:
dh_auto_configure -- \
- $(ENABLE_WEBKIT) \
- -Dlibnotify=true
+ -Dlibnotify=true \
+ -Dwebkitgtk=false \
+ ${NULL}
bgstack15