xf86-video-amdgpu: Branch 'master' - 3 commits

Michel Dänzer daenzer at kemper.freedesktop.org
Thu Jul 27 06:14:49 UTC 2017


 Makefile.am  |    2 ++
 autogen.sh   |    2 +-
 configure.ac |    1 +
 3 files changed, 4 insertions(+), 1 deletion(-)

New commits:
commit a47c0093338d80d84e7033ad15d051925d542ca0
Author: Michel Dänzer <michel.daenzer at amd.com>
Date:   Wed Jul 26 16:46:14 2017 +0900

    autogen.sh: Pass -f to autoreconf
    
    To ensure that any existing copies of autotools files will be replaced
    with the current versions.
    
    Acked-by: Alex Deucher <alexander.deucher at amd.com>

diff --git a/autogen.sh b/autogen.sh
index c814d5c..683b323 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -6,7 +6,7 @@ test -z "$srcdir" && srcdir=.
 ORIGDIR=`pwd`
 cd "$srcdir"
 
-autoreconf -v --install || exit 1
+autoreconf -f -v --install || exit 1
 cd "$ORIGDIR" || exit $?
 
 git config --local --get format.subjectPrefix >/dev/null 2>&1 ||
commit 842bad4b951296ca25f47b50cb358e502bf30ebb
Author: Michel Dänzer <michel.daenzer at amd.com>
Date:   Wed Jul 26 16:44:00 2017 +0900

    Makefile.am: Set ACLOCAL_AMFLAGS = -I m4
    
    Suggested by one of the tools called by autoreconf.
    
    Acked-by: Alex Deucher <alexander.deucher at amd.com>

diff --git a/Makefile.am b/Makefile.am
index f0e2c3c..b8d99f3 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -21,6 +21,8 @@
 SUBDIRS = src man conf
 MAINTAINERCLEANFILES = ChangeLog INSTALL
 
+ACLOCAL_AMFLAGS = -I m4
+
 .PHONY: ChangeLog INSTALL
 
 INSTALL:
commit 227b399badaad9bbef0be5a776ce008d0d243449
Author: Michel Dänzer <michel.daenzer at amd.com>
Date:   Wed Jul 26 16:42:58 2017 +0900

    Add AC_CONFIG_MACRO_DIRS([m4]) to configure.ac
    
    Suggested by one of the tools called by autoreconf.
    
    Acked-by: Alex Deucher <alexander.deucher at amd.com>

diff --git a/configure.ac b/configure.ac
index 26eb52d..0ff2bdf 100644
--- a/configure.ac
+++ b/configure.ac
@@ -29,6 +29,7 @@ AC_INIT([xf86-video-amdgpu],
 
 AC_CONFIG_SRCDIR([Makefile.am])
 AC_CONFIG_HEADERS([config.h])
+AC_CONFIG_MACRO_DIRS([m4])
 
 AC_CONFIG_AUX_DIR(.)
 


More information about the xorg-commit mailing list