From: Ralf Jung Date: Sat, 18 Aug 2012 08:41:14 +0000 (+0200) Subject: automake packages do not need automake to compile X-Git-Url: https://git.ralfj.de/auto-debuild.git/commitdiff_plain/3d3897134a82f3e0bd9239733462d7821d507d31 automake packages do not need automake to compile --- diff --git a/auto_debuild.py b/auto_debuild.py index 61d7efc..61bbd9e 100755 --- a/auto_debuild.py +++ b/auto_debuild.py @@ -98,7 +98,7 @@ def pythonRules(config): # build systems buildSystems = { 'cmake': BuildSystem(cmakeRules, ["cmake"]), - 'automake': BuildSystem(automakeRules, ["automake"]), + 'automake': BuildSystem(automakeRules), 'python': BuildSystem(pythonRules, ["python-setuptools"], ["${python:Depends}"]), }