All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH xf86-video-ati 1/3] Add AC_CONFIG_MACRO_DIRS([m4]) to configure.ac
@ 2017-07-27  6:30 Michel Dänzer
       [not found] ` <20170727063041.6034-1-michel-otUistvHUpPR7s880joybQ@public.gmane.org>
  0 siblings, 1 reply; 4+ messages in thread
From: Michel Dänzer @ 2017-07-27  6:30 UTC (permalink / raw)
  To: amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW

From: Michel Dänzer <michel.daenzer@amd.com>

Suggested by one of the tools called by autoreconf.

(Cherry picked from amdgpu commit 227b399badaad9bbef0be5a776ce008d0d243449)

Signed-off-by: Michel Dänzer <michel.daenzer@amd.com>
---
 configure.ac | 1 +
 1 file changed, 1 insertion(+)

diff --git a/configure.ac b/configure.ac
index 700e01a5a..c9bc0a958 100644
--- a/configure.ac
+++ b/configure.ac
@@ -29,6 +29,7 @@ AC_INIT([xf86-video-ati],
 
 AC_CONFIG_SRCDIR([Makefile.am])
 AC_CONFIG_HEADERS([config.h])
+AC_CONFIG_MACRO_DIRS([m4])
 
 AC_CONFIG_AUX_DIR(.)
 
-- 
2.13.3

_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH xf86-video-ati 2/3] Makefile.am: Set ACLOCAL_AMFLAGS = -I m4
       [not found] ` <20170727063041.6034-1-michel-otUistvHUpPR7s880joybQ@public.gmane.org>
@ 2017-07-27  6:30   ` Michel Dänzer
  2017-07-27  6:30   ` [PATCH xf86-video-ati 3/3] autogen.sh: Pass -f to autoreconf Michel Dänzer
  1 sibling, 0 replies; 4+ messages in thread
From: Michel Dänzer @ 2017-07-27  6:30 UTC (permalink / raw)
  To: amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW

From: Michel Dänzer <michel.daenzer@amd.com>

Suggested by one of the tools called by autoreconf.

(Cherry picked from amdgpu commit 842bad4b951296ca25f47b50cb358e502bf30ebb)

Signed-off-by: Michel Dänzer <michel.daenzer@amd.com>
---
 Makefile.am | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/Makefile.am b/Makefile.am
index f0e2c3cea..b8d99f323 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:
-- 
2.13.3

_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH xf86-video-ati 3/3] autogen.sh: Pass -f to autoreconf
       [not found] ` <20170727063041.6034-1-michel-otUistvHUpPR7s880joybQ@public.gmane.org>
  2017-07-27  6:30   ` [PATCH xf86-video-ati 2/3] Makefile.am: Set ACLOCAL_AMFLAGS = -I m4 Michel Dänzer
@ 2017-07-27  6:30   ` Michel Dänzer
       [not found]     ` <20170727063041.6034-3-michel-otUistvHUpPR7s880joybQ@public.gmane.org>
  1 sibling, 1 reply; 4+ messages in thread
From: Michel Dänzer @ 2017-07-27  6:30 UTC (permalink / raw)
  To: amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW

From: Michel Dänzer <michel.daenzer@amd.com>

To ensure that any existing copies of autotools files will be replaced
with the current versions.

(Cherry picked from amdgpu commit a47c0093338d80d84e7033ad15d051925d542ca0)

Signed-off-by: Michel Dänzer <michel.daenzer@amd.com>
---
 autogen.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/autogen.sh b/autogen.sh
index a98269f70..49d14c622 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 ||
-- 
2.13.3

_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* RE: [PATCH xf86-video-ati 3/3] autogen.sh: Pass -f to autoreconf
       [not found]     ` <20170727063041.6034-3-michel-otUistvHUpPR7s880joybQ@public.gmane.org>
@ 2017-07-27 12:47       ` Deucher, Alexander
  0 siblings, 0 replies; 4+ messages in thread
From: Deucher, Alexander @ 2017-07-27 12:47 UTC (permalink / raw)
  To: 'Michel Dänzer', amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW

> -----Original Message-----
> From: amd-gfx [mailto:amd-gfx-bounces@lists.freedesktop.org] On Behalf
> Of Michel Dänzer
> Sent: Thursday, July 27, 2017 2:31 AM
> To: amd-gfx@lists.freedesktop.org
> Subject: [PATCH xf86-video-ati 3/3] autogen.sh: Pass -f to autoreconf
> 
> From: Michel Dänzer <michel.daenzer@amd.com>
> 
> To ensure that any existing copies of autotools files will be replaced
> with the current versions.
> 
> (Cherry picked from amdgpu commit
> a47c0093338d80d84e7033ad15d051925d542ca0)
> 
> Signed-off-by: Michel Dänzer <michel.daenzer@amd.com>

Series is:
Acked-by: Alex Deucher <alexander.deucher@amd.com>

> ---
>  autogen.sh | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/autogen.sh b/autogen.sh
> index a98269f70..49d14c622 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 ||
> --
> 2.13.3
> 
> _______________________________________________
> amd-gfx mailing list
> amd-gfx@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/amd-gfx
_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2017-07-27 12:47 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-07-27  6:30 [PATCH xf86-video-ati 1/3] Add AC_CONFIG_MACRO_DIRS([m4]) to configure.ac Michel Dänzer
     [not found] ` <20170727063041.6034-1-michel-otUistvHUpPR7s880joybQ@public.gmane.org>
2017-07-27  6:30   ` [PATCH xf86-video-ati 2/3] Makefile.am: Set ACLOCAL_AMFLAGS = -I m4 Michel Dänzer
2017-07-27  6:30   ` [PATCH xf86-video-ati 3/3] autogen.sh: Pass -f to autoreconf Michel Dänzer
     [not found]     ` <20170727063041.6034-3-michel-otUistvHUpPR7s880joybQ@public.gmane.org>
2017-07-27 12:47       ` Deucher, Alexander

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.