14 lines
340 B
Makefile
Executable File
14 lines
340 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
# -*- makefile -*-
|
|
# Uncomment this to turn on verbose mode.
|
|
#export DH_VERBOSE=1
|
|
|
|
%:
|
|
dh $@
|
|
|
|
# meson-generated spice-protocol.pc contains libdir= assignment
|
|
# which is not used but causes lintian to emit error condition
|
|
override_dh_auto_build:
|
|
dh_auto_build
|
|
sed -i '/^libdir=/D' obj-*/meson-private/spice-protocol.pc
|