SHA256
1
0
forked from pool/gdm

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:
2013-09-24 20:03:59 +00:00
committed by Git OBS Bridge
parent 4e453114ce
commit 812d85f84b
5 changed files with 47 additions and 6 deletions

28
autogen.sh Normal file
View 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" "$@"