From a6c02a86675554ee8b9a5d3278376b5053e824b9 Mon Sep 17 00:00:00 2001 From: Alan Coopersmith Date: Thu, 4 May 2023 17:53:29 -0700 Subject: Makefile.am: swap order of ACLOCAL_AMFLAGS Causes autoreconf to fail with: libtoolize: error: AC_CONFIG_MACRO_DIRS([m4]) conflicts with ACLOCAL_AMFLAGS Signed-off-by: Alan Coopersmith --- Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index 44afe70..5dffe92 100644 --- a/Makefile.am +++ b/Makefile.am @@ -18,7 +18,7 @@ # IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -ACLOCAL_AMFLAGS = ${ACLOCAL_FLAGS} -I m4 +ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS} SUBDIRS = src -- cgit v1.2.3 From dc1f918c15ecca548d8d3d6ec547a6d1cd4dff77 Mon Sep 17 00:00:00 2001 From: Alan Coopersmith Date: Thu, 4 May 2023 17:56:58 -0700 Subject: xf86-video-geode 2.11.21 Signed-off-by: Alan Coopersmith --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index ef3cadb..6a1c8c0 100644 --- a/configure.ac +++ b/configure.ac @@ -23,8 +23,8 @@ # Initialize Autoconf AC_PREREQ(2.60) AC_INIT([xf86-video-geode], - [2.11.20], - [https://gitlab.freedesktop.org/xorg/driver/xf86-video-geode/issues], + [2.11.21], + [https://gitlab.freedesktop.org/xorg/driver/xf86-video-geode/-/issues], [xf86-video-geode], [http://www.x.org/wiki/GeodeDriver]) -- cgit v1.2.3