Accepting request 200372 from home:dimstar:branches:GNOME:Factory
Update to 3.10.0 OBS-URL: https://build.opensuse.org/request/show/200372 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/gdm?expand=0&rev=253
This commit is contained in:
28
autogen.sh
Normal file
28
autogen.sh
Normal file
@@ -0,0 +1,28 @@
|
||||
#!/bin/sh
|
||||
# Run this to generate all the initial makefiles, etc.
|
||||
|
||||
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
|
||||
|
||||
INTLTOOLIZE=`which intltoolize`
|
||||
if test -z $INTLTOOLIZE; then
|
||||
echo "*** No intltoolize found, please install the intltool package ***"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
autopoint --force
|
||||
AUTOPOINT='intltoolize --automake --copy' autoreconf --force --install --verbose
|
||||
|
||||
cd $olddir
|
||||
test -n "$NOCONFIGURE" || "$srcdir/configure" "$@"
|
||||
|
||||
|
Reference in New Issue
Block a user