From a22fc442e56ba0bfbbe55278cf824252ae10c3b2 Mon Sep 17 00:00:00 2001 From: Ralf Jung Date: Sat, 10 May 2014 15:59:16 +0200 Subject: [PATCH] Fix compatibility with make 4 --- auto_debuild.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auto_debuild.py b/auto_debuild.py index 524603f..0d2f65e 100755 --- a/auto_debuild.py +++ b/auto_debuild.py @@ -105,7 +105,7 @@ class RulesFile: print(file=f) print(".PHONY: build", file=f) # there may be a directory called "build" print(file=f) - print("build %:", file=f) # need to mention "build" here again explicitly so PHONY takes effect + print("%:", file=f) # write proper dh call dh = self.dh if self.dhWith: -- 2.30.2