#!/usr/bin/make -f

# See debhelper(7) (uncomment to enable).    
# Output every command that modifies files on the build system.    
export DH_VERBOSE = 1

# Export all hardening flags
export DEB_BUILD_MAINT_OPTIONS = hardening=+all

%:
	dh $@

override_dh_auto_install:
	dh_auto_install
	sed -i "/dependency_libs/ s/'.*'/''/" `find . -name '*.la'`
