~ubuntu-branches/debian/squeeze/sbuild/squeeze

« back to all changes in this revision

Viewing changes to bootstrap

  • Committer: Bazaar Package Importer
  • Author(s): Roger Leigh
  • Date: 2008-08-18 11:15:05 UTC
  • mfrom: (0.1.1 upstream) (3.1.6 hardy)
  • Revision ID: james.westby@ubuntu.com-20080818111505-5j8x6j4d4krxbjdv
Tags: 0.57.7-1
* New release.
* sbuild-checkpackages handles --list and --set options correctly
  (Closes: #495490).
* sbuild-createchroot: Correctly parse --arch option (Closes: #495517).
  Thanks to Cyril Brulebois for this patch.
* sbuild-setup.7.in: Change permissions of /build to 02775
  (Closes: #494076).  Thanks to Lucas Nussbaum for finding this missing
  step.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
if [ -d m4 ]; then
 
3
  :
 
4
else
 
5
  mkdir m4
 
6
fi
 
7
if [ -d scripts ]; then
 
8
  :
 
9
else
 
10
  mkdir scripts
 
11
fi
 
12
sed -e "s/@RELEASE_DATE@/`date '+%d %b %Y'`/" -e "s/@RELEASE_UDATE@/`date '+%s'`/" scripts/sbuild_release.m4.in > m4/sbuild_release.m4
 
13
 
 
14
# To satisfy automake
 
15
touch ChangeLog
 
16
 
 
17
 
 
18
echo "aclocal -I m4"
 
19
aclocal -I m4
 
20
echo "autoheader"
 
21
autoheader
 
22
echo "automake"
 
23
automake --add-missing --gnu --force --copy
 
24
echo "autoconf"
 
25
autoconf
 
26