diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 13:45:26 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 13:45:26 +0000 |
commit | ea13660109d7a1bdcc72562c377cf6e627a46799 (patch) | |
tree | 392fcd2295d2351eff2feeeee4b609214ef7217e /autogen.sh | |
parent | Adding upstream version 0.30.0. (diff) | |
download | xserver-xorg-input-libinput-1a75929849ac632b20c78cc8804b1b3782f878b6.tar.xz xserver-xorg-input-libinput-1a75929849ac632b20c78cc8804b1b3782f878b6.zip |
Adding debian version 0.30.0-1.debian/0.30.0-1debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'autogen.sh')
-rw-r--r-- | autogen.sh | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/autogen.sh b/autogen.sh new file mode 100644 index 0000000..421528e --- /dev/null +++ b/autogen.sh @@ -0,0 +1,17 @@ +#! /bin/sh + +srcdir=`dirname "$0"` +test -z "$srcdir" && srcdir=. + +ORIGDIR=`pwd` +cd "$srcdir" + +autoreconf -v --install || exit 1 +cd "$ORIGDIR" || exit $? + +git config --local --get format.subjectPrefix >/dev/null 2>&1 || + git config --local format.subjectPrefix "PATCH xf86-input-libinput" + +if test -z "$NOCONFIGURE"; then + exec "$srcdir"/configure "$@" +fi |