From 69739b6ed753b3d36e1990f74c0c89d8bb1863e4 Mon Sep 17 00:00:00 2001 From: Dimitris Aragiorgis Date: Mon, 9 Dec 2013 15:45:34 +0200 Subject: [PATCH] (debian) Run ./autogen.sh before configure This is needed so that packaging can be done by using official src tree found on git repo. Official debian packages provide in orig tarball the files that get generated by automake, autoconf, and aclocal: * configure * Makefile.in * autotools scripts We decide not to track those files in upstream branch (which are already included in .gitignore), instead we generate those files on every build. Signed-off-by: Dimitris Aragiorgis --- debian/rules | 1 + 1 file changed, 1 insertion(+) diff --git a/debian/rules b/debian/rules index 3e4b505..b5020c7 100755 --- a/debian/rules +++ b/debian/rules @@ -9,6 +9,7 @@ GNT_USERGROUP_PREFIX="gnt-" dh $@ --with python2,sphinxdoc,bash_completion override_dh_auto_configure: + ./autogen.sh ./configure \ --prefix=/usr \ --localstatedir=/var \ -- 1.7.10.4