add option to call autogen.sh
authorRalf Jung <post@ralfj.de>
Tue, 30 Dec 2014 12:04:24 +0000 (13:04 +0100)
committerRalf Jung <post@ralfj.de>
Tue, 30 Dec 2014 12:04:24 +0000 (13:04 +0100)
auto_debuild.py

index 0d2f65ebc6b1530bd9c03a7b7cf5b2cb6f32a400..640ac4fd67aaa36b28a9d671c5a0f0be6f20d69b 100755 (executable)
@@ -138,6 +138,7 @@ def automakeRules(r, config):
        #  and HOST_GNU_TYPE are equal, and if they are not, add a --host parameter)
        r.dh += ["--buildsystem=autoconf", "--builddirectory="+config.getstr('buildDir')]
        r.rules['auto_configure'] = [
+        (safeCall(*config['autogen']) + " && " if 'autogen' in config else '') +
                safeCall("mkdir", "-p", buildDir),
                safeCall("cd", buildDir) + " && " +
                'BUILD_TYPE=$$(dpkg-architecture -qDEB_BUILD_GNU_TYPE) && ' + # doing the expansion beforehand ensures that we cancel if it fails