mirror of
https://git.jami.net/savoirfairelinux/jami-daemon.git
synced 2025-08-12 22:09:25 +08:00
21 lines
318 B
Bash
21 lines
318 B
Bash
![]() |
#!/bin/bash
|
||
|
|
||
|
function autocmd()
|
||
|
{
|
||
|
echo "Running ${1}..."
|
||
|
$* || {
|
||
|
echo "Error running ${1}"
|
||
|
exit 1
|
||
|
}
|
||
|
}
|
||
|
|
||
|
autocmd libtoolize --force --copy
|
||
|
autocmd aclocal
|
||
|
autocmd autoheader
|
||
|
autocmd autoconf -f
|
||
|
autocmd automake --add-missing --force-missing --copy -Wall
|
||
|
|
||
|
./configure $@
|
||
|
|
||
|
|