#!/usr/bin/make -f

%:
	dh $@ --with autoreconf

# force libdir since upstream stupidly change libdir
# from '${exec_prefix}/lib' to '${exec_prefix}/lib64'
# (literal values) on x86_64 and a few other 64bit arches.
# We need to set it to something else which evaluates to
# the needed value.
override_dh_auto_configure:
	dh_auto_configure -- --libdir=/usr/lib
