~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to tools/packaging/build-packages.sh

  • Committer: Martin Pool
  • Date: 2010-01-31 16:32:34 UTC
  • mto: (4999.3.1 apport)
  • mto: This revision was merged to the branch mainline in revision 5002.
  • Revision ID: mbp@sourcefrog.net-20100131163234-k62100thmvkfjxad
Add sample apport integration glue

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/bin/bash
2
 
# Helper to build packages for the various distributions
 
2
# A helper script to build packages for the various distributions
3
3
 
4
4
if [ -z "$UBUNTU_RELEASES" ]; then
5
5
    echo "Configure the distro platforms that you want to"
9
9
fi
10
10
 
11
11
for DISTRO in $UBUNTU_RELEASES; do
12
 
    (cd "$PACKAGE-$DISTRO" && bzr builddeb -S)
 
12
    (cd "packaging-$DISTRO" && bzr builddeb -S)
13
13
done