]> git.proxmox.com Git - pve-manager.git/blob - autogen.sh
imported from svn 'pve-manager/pve2'
[pve-manager.git] / autogen.sh
1 #!/bin/sh
2
3 # Refresh GNU autotools toolchain.
4 for 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}
10 done
11
12 aclocal
13 #aclocal -I m4
14 #aclocal -I cmulocal
15 #autoheader
16 automake --foreign --add-missing
17 autoconf
18
19 exit 0