File: autogen.sh

package info (click to toggle)
circuslinux 1.0.3-23
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 2,720 kB
  • ctags: 244
  • sloc: sh: 3,087; ansic: 2,594; makefile: 175; perl: 55
file content (22 lines) | stat: -rwxr-xr-x 442 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/bash
#
# autogen.sh for circuslinux
#
# Requires: automake, autoconf, dpkg-dev
set -e

# Refresh GNU autotools toolchain.
aclocal
automake --foreign

# The automake package already links config.sub/guess to /usr/share/misc/
for i in config.guess config.sub missing install-sh mkinstalldirs ; do
        test -r /usr/share/automake/${i} && cp -f /usr/share/automake/${i} .
        chmod 755 ${i}
done

autoconf

#./configure $*

exit 0