#!/usr/bin/make -f

export DEB_BUILD_MAINT_OPTIONS = hardening=+all
export DEB_LDFLAGS_MAINT_APPEND = -Wl,-z,defs -Wl,--as-needed

%:
	dh $@

override_dh_auto_configure:
	dh_auto_configure -- \
		--with-gconf-schema-file-dir=/usr/share/gconf/schemas \
		 --disable-scrollkeeper

override_dh_autoreconf:
	dh_autoreconf --as-needed

override_dh_install:
	dh_install
	rm -rf debian/gconf-editor/var

override_dh_auto_test:
