blob: cbb55fa2305be7e50d7c4bc73c9f74446810693d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/usr/bin/make -f
# -*- makefile -*-
export GOVER := $(shell debian/helpers/getver.pl)
export GODEFAULT := $(shell debian/helpers/getdefault.pl)
%:
dh $@
override_dh_gencontrol:
dh_gencontrol -- -Vgolang:Version=$(GOVER) -Vgolang:Default=$(GODEFAULT)
|