virt-manager/autogen.sh

23 lines
446 B
Bash
Raw Normal View History

2006-03-29 05:40:14 -06:00
#!/bin/sh
set -e
# Hack around autoconf wierdness. Need to figure out what's really wrong
touch config.rpath
2006-03-29 05:40:14 -06:00
# Make makefiles.
intltoolize --automake --copy --force
perl -i -p -e 's,^DATADIRNAME.*$,DATADIRNAME = share,' po/Makefile.in.in
perl -i -p -e 's,^GETTEXT_PACKAGE.*$,GETTEXT_PACKAGE = virt-manager,' po/Makefile.in.in
aclocal -I m4
libtoolize
automake -a
autoconf
2006-03-29 05:40:14 -06:00
test -d build && rm -rf build
mkdir build
cd build
../configure $@