mirror of
https://github.com/ostreedev/ostree.git
synced 2024-12-25 01:34:34 +03:00
17560a57bf
Yes, it's really me. Colin Walters. Writing documentation. You don't need to do a DNA test.
43 lines
823 B
Bash
Executable File
43 lines
823 B
Bash
Executable File
#!/bin/sh
|
|
|
|
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
|
|
|
|
set -e
|
|
|
|
mkdir -p m4
|
|
|
|
# Fetch submodules if needed
|
|
if test ! -f src/libgsystem/README;
|
|
then
|
|
echo "+ Setting up submodules"
|
|
git submodule init
|
|
git submodule update
|
|
fi
|
|
|
|
GTKDOCIZE=$(which gtkdocize 2>/dev/null)
|
|
if test -z $GTKDOCIZE; then
|
|
echo "You don't have gtk-doc installed, and thus won't be able to generate the documentation."
|
|
rm -f gtk-doc.make
|
|
cat > gtk-doc.make <<EOF
|
|
EXTRA_DIST =
|
|
CLEANFILES =
|
|
EOF
|
|
else
|
|
gtkdocize || exit $?
|
|
fi
|
|
|
|
autoreconf --force --install --verbose
|
|
|
|
cd $olddir
|
|
test -n "$NOCONFIGURE" || "$srcdir/configure" "$@"
|