From 5f389eeb3ccbef7b041db080b5b2d42e2a2dc5a2 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim-Philipp=20M=C3=BCller?= Date: Tue, 14 May 2019 19:19:46 +0100 Subject: [PATCH] configure: fix autotools build after gtk-doc removal Were using a gtk-doc specific file to check if we can find the srcdir, so configure would fail. --- autogen.sh | 2 +- configure.ac | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/autogen.sh b/autogen.sh index 2f447e8..857f50aa 100755 --- a/autogen.sh +++ b/autogen.sh @@ -50,7 +50,7 @@ if test -d po ; then touch -t 200001010000 po/gst-plugins-bad-1.0.pot fi -CONFIGURE_DEF_OPT='--enable-maintainer-mode --enable-gtk-doc' +CONFIGURE_DEF_OPT='--enable-maintainer-mode' if test "x$package" = "xgstreamer"; then CONFIGURE_DEF_OPT="$CONFIGURE_DEF_OPT --enable-failing-tests --enable-poisoning" diff --git a/configure.ac b/configure.ac index be487de..dcf3f6e 100644 --- a/configure.ac +++ b/configure.ac @@ -17,7 +17,7 @@ dnl check if this is a release version AS_NANO(GST_GIT="no", GST_GIT="yes") dnl can autoconf find the source ? -AC_CONFIG_SRCDIR([docs/plugins/gst-plugins-bad-plugins-docs.sgml]) +AC_CONFIG_SRCDIR([gst/aiff/aiff.c]) dnl define the output header for config AC_CONFIG_HEADERS([config.h]) -- 2.7.4