4118617666
Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
30 lines
634 B
Bash
Executable File
30 lines
634 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
test -n "$srcdir" || srcdir=`dirname "$0"`
|
|
test -n "$srcdir" || srcdir=.
|
|
|
|
olddir=`pwd`
|
|
cd $srcdir
|
|
|
|
AUTORECONF=`which autoreconf`
|
|
if test -z $AUTORECONF; then
|
|
echo "*** No autoreconf found, please intall it ***"
|
|
exit 1
|
|
fi
|
|
|
|
mkdir -p m4
|
|
|
|
cd $olddir
|
|
if ! test -f libglnx/README.md; then
|
|
git submodule update --init
|
|
fi
|
|
# Workaround automake bug with subdir-objects and computed paths
|
|
sed -e 's,$(libglnx_srcpath),'${srcdir}/libglnx,g < libglnx/Makefile-libglnx.am >libglnx/Makefile-libglnx.am.inc
|
|
|
|
|
|
autoreconf --force --install --verbose
|
|
|
|
cd $olddir
|
|
test -n "$NOCONFIGURE" || "$srcdir/configure" "$@"
|