mirror of
https://git.jami.net/savoirfairelinux/jami-daemon.git
synced 2025-08-12 22:09:25 +08:00
13 lines
243 B
Bash
Executable File
13 lines
243 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ ! -e configure.ac ]
|
|
then
|
|
echo $0 must be called from top source directory.
|
|
exit 1
|
|
fi
|
|
|
|
echo autoreconf ...
|
|
echo > stamp-h.in
|
|
autoreconf --verbose --force --install --warnings=all,no-portability || { echo failed. ; exit 1 ; }
|
|
|