This repository has been archived on 2024-07-15. You can view files and clone it, but cannot push or open issues or pull requests.
hedera/autogen.sh

16 lines
253 B
Bash
Raw Normal View History

2013-12-16 11:11:47 +00:00
#!/bin/sh
test -n "$srcdir" || srcdir=`dirname "$0"`
test -n "$srcdir" || srcdir=.
builddir=`pwd`
mkdir -p $builddir/m4
cd $srcdir
gtkdocize --copy &&
autoreconf -fi &&
glib-gettextize --copy --force &&
2013-10-11 23:07:35 +00:00
intltoolize --copy --force --automake
2013-12-16 11:11:47 +00:00
exit $?