aboutsummaryrefslogtreecommitdiff
path: root/lib/libdvd/libdvdread/autogen.sh
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libdvd/libdvdread/autogen.sh')
-rwxr-xr-xlib/libdvd/libdvdread/autogen.sh27
1 files changed, 0 insertions, 27 deletions
diff --git a/lib/libdvd/libdvdread/autogen.sh b/lib/libdvd/libdvdread/autogen.sh
deleted file mode 100755
index 077b682d49..0000000000
--- a/lib/libdvd/libdvdread/autogen.sh
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/bin/sh
-#
-# run this to generate all the initial makefiles, etc.
-
-srcdir=`dirname "$0"`
-test -z "$srcdir" && srcdir=.
-
-ORIGDIR=`pwd`
-cd "$srcdir"
-
-AUTORECONF=${AUTORECONF-autoreconf}
-
-if ! type $AUTORECONF >/dev/null 2>&1; then
- echo "**Error**: Missing \`autoreconf' program." >&2
- echo "You will need the autoconf and automake packages." >&2
- echo "You can download them from ftp://ftp.gnu.org/pub/gnu/." >&2
- exit 1
-fi
-
-$AUTORECONF -v --install || exit $?
-cd "$ORIGDIR" || exit $?
-
-test "$1" = noconfig && NOCONFIGURE=1
-
-if test -z "$NOCONFIGURE"; then
- "$srcdir"/configure "$@"
-fi