~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/canonical/buildd/buildrecipe

[r=bac][bug=885497] Pass --allow-fallback-to-native to "bzr dailydeb".

Show diffs side-by-side

added added

removed removed

Lines of Context:
123
123
        retcode = call_report_rusage([
124
124
            'bzr', 'dailydeb', '--safe', '--no-build', recipe_path,
125
125
            self.tree_path, '--manifest', manifest_path,
126
 
            '--append-version', '~%s1' % self.distroseries_name], env=env)
 
126
            '--allow-fallback-to-native', '--append-version',
 
127
            '~%s1' % self.distroseries_name], env=env)
127
128
        if retcode != 0:
128
129
            return retcode
129
130
        (source,) = [name for name in os.listdir(self.tree_path)