]> git.proxmox.com Git - pve-manager.git/blame - autogen.sh
imported from svn 'pve-manager/pve2'
[pve-manager.git] / autogen.sh
CommitLineData
aff192e6
DM
1#!/bin/sh
2
3# Refresh GNU autotools toolchain.
4for i in config.guess config.sub missing install-sh mkinstalldirs ; do
5 test -r /usr/share/automake-1.9/${i} && {
6 rm -f ${i}
7 cp /usr/share/automake-1.9/${i} .
8 }
9 chmod 755 ${i}
10done
11
12aclocal
13#aclocal -I m4
14#aclocal -I cmulocal
15#autoheader
16automake --foreign --add-missing
17autoconf
18
19exit 0