
git-svn-id: http://dev.openwengo.org/svn/openwengo/wengophone-ng/branches/wengophone-dbus-api/libs/dbus@7382 30a43799-04e7-0310-8b2b-ea0d24f86d0e
18 lines
250 B
Bash
Executable file
18 lines
250 B
Bash
Executable file
#!/bin/sh
|
|
|
|
function autocmd()
|
|
{
|
|
echo "Running ${1}..."
|
|
$* || {
|
|
echo "Error running ${1}"
|
|
exit 1
|
|
}
|
|
}
|
|
|
|
autocmd aclocal
|
|
autocmd automake -acf
|
|
autocmd autoconf
|
|
autocmd libtoolize -f
|
|
autocmd autoheader
|
|
|
|
echo "Autogen done, now you can ./configure"
|