~ubuntu-branches/ubuntu/wily/apparmor/wily

« back to all changes in this revision

Viewing changes to deprecated/management/apparmor-dbus/autogen.sh

  • Committer: Bazaar Package Importer
  • Author(s): Kees Cook
  • Date: 2011-08-10 18:12:34 UTC
  • mto: This revision was merged to the branch mainline in revision 9.
  • Revision ID: james.westby@ubuntu.com-20110810181234-b6obckg60cp99crg
Tags: upstream-2.7.0~beta1+bzr1774
ImportĀ upstreamĀ versionĀ 2.7.0~beta1+bzr1774

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh
2
 
 
3
 
DIE=0
4
 
 
5
 
(autoconf --version) < /dev/null > /dev/null 2>&1 || {
6
 
        echo
7
 
        echo "You must have autoconf installed to compile $package."
8
 
        echo "Download the appropriate package for your distribution,"
9
 
        echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/"
10
 
        DIE=1
11
 
}
12
 
 
13
 
(automake --version) < /dev/null > /dev/null 2>&1 || {
14
 
        echo
15
 
        echo "You must have automake installed to compile $package."
16
 
        echo "Download the appropriate package for your system,"
17
 
        echo "or get the source from one of the GNU ftp sites"
18
 
        echo "listed in http://www.gnu.org/order/ftp.html"
19
 
        DIE=1
20
 
}
21
 
 
22
 
if test "$DIE" -eq 1; then
23
 
        exit 1
24
 
fi
25
 
 
26
 
echo "Running aclocal"
27
 
aclocal
28
 
echo "Running autoconf"
29
 
autoconf --force
30
 
echo "Running automake -ac"
31
 
automake -ac