#!/usr/bin/perl -w
#
# Init script for LinuxCOE with Project-Builder
#
use ProjectBuilder::Distribution qw (pb_distro_init);

# Get the running distro to build on
my ($ddir, $dver, $dfam, $dtype, $pbsuf) = pb_distro_init();

# Clean up things for autoconf
# There is something wrong with mandriva automake 1.9
#if ($ddir eq "mandriva") {
#system("aclocal-1.4");
#system("autoconf");
#system("automake-1.4");
#} else {
	system("./autogen.sh");
#}
