From e82d2ebfa5c26c1e60a334c9f048cf9661f019f5 Mon Sep 17 00:00:00 2001 From: Ralf Jung Date: Mon, 6 Aug 2012 15:48:55 +0200 Subject: [PATCH] change default cmake build directory to 'build', after I figured out how to make the makefile target phony --- auto_debuild.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/auto_debuild.py b/auto_debuild.py index bb4387e..c827a12 100755 --- a/auto_debuild.py +++ b/auto_debuild.py @@ -30,7 +30,9 @@ class RulesFile: def write(self, f): print >>f, "#!/usr/bin/make -f" print >>f, "" - print >>f, "%:" + print >>f, ".PHONY: build" # there may be a directory called "build" + print >>f, "" + print >>f, "build %:" # need to mention "build" here again explicitly print >>f, '\t'+self.env2str()+' dh $@ '+safeCall(*self.dh) for rule in self.rules: print >>f, "" @@ -40,7 +42,7 @@ class RulesFile: # build-system specific part of rules file def cmakeRules(config): - buildDir = config.get('buildDir', 'build.dir') # "build" is not a good idea, as that's also the name of a target... + buildDir = config.get('buildDir', 'build') srcDir = os.getcwd() r = RulesFile() r.dh += ["--buildsystem=cmake", "--builddirectory="+buildDir] # dh parameters -- 2.30.2