debian: fix empty debian package

Replace '--with autotools_dev' with '--with autoreconf' in
debian/rules, so a ./configure file gets generated from configure.ac,
and the debian package scripts don't generate an empty package.

I did not notice this earlier, because when building the package locally
with dpkg-buildpackage, it was not empty. (That is probably, because my
local dir already had the configure script generated.)

Related: OS#3899
Change-Id: I483136cd28395ae8fc2c112cf659ee83255afe87
This commit is contained in:
Oliver Smith 2019-05-21 10:59:11 +02:00
parent 5c1ac995db
commit 068153c39e
1 changed files with 1 additions and 1 deletions

2
debian/rules vendored
View File

@ -2,4 +2,4 @@
#export DH_VERBOSE = 1
%:
dh $@ --with autotools_dev
dh $@ --with autoreconf