diff options
author | Sebastien Bacher <seb128@ubuntu.com> | 2019-04-03 22:56:24 +0200 |
---|---|---|
committer | Sebastien Bacher <seb128@ubuntu.com> | 2019-04-03 22:56:24 +0200 |
commit | a4fa01e68876c9d177e20c1d40ce2b6d7f347a74 (patch) | |
tree | 45f1a97327086f0965672d1b159ef2bc155733f5 /autogen.sh | |
parent | releasing package zenity version 3.30.0-2 (diff) | |
parent | New upstream version 3.32.0 (diff) | |
download | zenity-a4fa01e68876c9d177e20c1d40ce2b6d7f347a74.tar.gz zenity-a4fa01e68876c9d177e20c1d40ce2b6d7f347a74.tar.bz2 zenity-a4fa01e68876c9d177e20c1d40ce2b6d7f347a74.zip |
Update upstream source from tag 'upstream/3.32.0'
Update to upstream version '3.32.0'
with Debian dir 03ce2b1bad2a1c364520981efc3bdd49d1be7da0
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 44 |
1 files changed, 30 insertions, 14 deletions
@@ -1,22 +1,38 @@ #!/bin/sh # Run this to generate all the initial makefiles, etc. +test -n "$srcdir" || srcdir=$(dirname "$0") +test -n "$srcdir" || srcdir=. -srcdir=`dirname $0` -test -z "$srcdir" && srcdir=. +olddir=$(pwd) -PKG_NAME="zenity" +cd $srcdir -(test -f $srcdir/configure.ac \ - && test -f $srcdir/ChangeLog \ - && test -d $srcdir/src) || { - echo -n "**Error**: Directory "\`$srcdir\'" does not look like the" - echo " top-level zenity directory" - exit 1 +(test -f configure.ac) || { + echo "*** ERROR: Directory '$srcdir' does not look like the top-level project directory ***" + exit 1 } +# shellcheck disable=SC2016 +PKG_NAME=$(autoconf --trace 'AC_INIT:$1' configure.ac) -which gnome-autogen.sh || { - echo "You need to install gnome-common" - exit 1 -} -. gnome-autogen.sh +if [ "$#" = 0 -a "x$NOCONFIGURE" = "x" ]; then + echo "*** WARNING: I am going to run 'configure' with no arguments." >&2 + echo "*** If you wish to pass any to it, please specify them on the" >&2 + echo "*** '$0' command line." >&2 + echo "" >&2 +fi + +autoreconf --verbose --force --install || exit 1 + +cd "$olddir" +if [ "$NOCONFIGURE" = "" ]; then + $srcdir/configure "$@" || exit 1 + + if [ "$1" = "--help" ]; then + exit 0 + else + echo "Now type 'make' to compile $PKG_NAME" || exit 1 + fi +else + echo "Skipping configure process." +fi |