File: autogen.sh

package info (click to toggle)
xmlto 0.0.18-5.1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 612 kB
  • ctags: 153
  • sloc: sh: 1,215; xml: 349; lex: 258; makefile: 113
file content (13 lines) | stat: -rw-r--r-- 242 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh
# autogen.sh: refresh GNU autotools toolchain for xmlto
set -e

aclocal-1.7
autoheader2.50
automake-1.7 --foreign --add-missing --force-missing --copy
autoconf2.50

# clean up the junk that was created
rm -rf autom4te.cache

exit 0