virt-manager/autogen.sh

22 lines
445 B
Bash
Raw Normal View History

2006-03-29 15:40:14 +04:00
#!/bin/sh
set -e
# 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
2007-08-17 00:11:25 +04:00
# Hack around autoconf wierdness. Need to figure out what's really wrong
touch config.rpath
2006-03-29 15:40:14 +04:00
test -d build && rm -rf build
mkdir build
cd build
../configure $@