* [PATCH libdrm] autotools: remove ${srcdir} from the includes
@ 2015-03-17 23:17 Emil Velikov
2015-03-18 10:18 ` Emil Velikov
0 siblings, 1 reply; 2+ messages in thread
From: Emil Velikov @ 2015-03-17 23:17 UTC (permalink / raw)
To: dri-devel; +Cc: emil.l.velikov
Already implicitly handled by the compiler.
Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
---
Inspired while cleaning up the very same includes in the Android build.
-Emil
exynos/Makefile.am | 1 -
freedreno/Makefile.am | 1 -
intel/Makefile.am | 1 -
nouveau/Makefile.am | 1 -
omap/Makefile.am | 1 -
radeon/Makefile.am | 1 -
6 files changed, 6 deletions(-)
diff --git a/exynos/Makefile.am b/exynos/Makefile.am
index 35bc71f..a9da0ff 100644
--- a/exynos/Makefile.am
+++ b/exynos/Makefile.am
@@ -2,7 +2,6 @@ AM_CFLAGS = \
$(WARN_CFLAGS) \
$(VISIBILITY_CFLAGS) \
-I$(top_srcdir) \
- -I$(top_srcdir)/exynos \
$(PTHREADSTUBS_CFLAGS) \
-I$(top_srcdir)/include/drm
diff --git a/freedreno/Makefile.am b/freedreno/Makefile.am
index 4482afe..407ab70 100644
--- a/freedreno/Makefile.am
+++ b/freedreno/Makefile.am
@@ -5,7 +5,6 @@ AM_CFLAGS = \
$(WARN_CFLAGS) \
$(VISIBILITY_CFLAGS) \
-I$(top_srcdir) \
- -I$(top_srcdir)/freedreno \
$(PTHREADSTUBS_CFLAGS) \
-I$(top_srcdir)/include/drm
diff --git a/intel/Makefile.am b/intel/Makefile.am
index ca4ed84..22a45f0 100644
--- a/intel/Makefile.am
+++ b/intel/Makefile.am
@@ -28,7 +28,6 @@ AM_CFLAGS = \
$(WARN_CFLAGS) \
$(VISIBILITY_CFLAGS) \
-I$(top_srcdir) \
- -I$(top_srcdir)/intel \
$(PTHREADSTUBS_CFLAGS) \
$(PCIACCESS_CFLAGS) \
$(VALGRIND_CFLAGS) \
diff --git a/nouveau/Makefile.am b/nouveau/Makefile.am
index 7543e43..1ca235d 100644
--- a/nouveau/Makefile.am
+++ b/nouveau/Makefile.am
@@ -4,7 +4,6 @@ AM_CFLAGS = \
$(WARN_CFLAGS) \
$(VISIBILITY_CFLAGS) \
-I$(top_srcdir) \
- -I$(top_srcdir)/nouveau \
$(PTHREADSTUBS_CFLAGS) \
-I$(top_srcdir)/include/drm \
-DDEBUG
diff --git a/omap/Makefile.am b/omap/Makefile.am
index 0778bdd..d6f5298 100644
--- a/omap/Makefile.am
+++ b/omap/Makefile.am
@@ -2,7 +2,6 @@ AM_CFLAGS = \
$(WARN_CFLAGS) \
$(VISIBILITY_CFLAGS) \
-I$(top_srcdir) \
- -I$(top_srcdir)/omap \
$(PTHREADSTUBS_CFLAGS) \
-I$(top_srcdir)/include/drm
diff --git a/radeon/Makefile.am b/radeon/Makefile.am
index 4575065..5cca394 100644
--- a/radeon/Makefile.am
+++ b/radeon/Makefile.am
@@ -28,7 +28,6 @@ AM_CFLAGS = \
$(WARN_CFLAGS) \
$(VISIBILITY_CFLAGS) \
-I$(top_srcdir) \
- -I$(top_srcdir)/radeon \
$(PTHREADSTUBS_CFLAGS) \
-I$(top_srcdir)/include/drm
--
2.1.3
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH libdrm] autotools: remove ${srcdir} from the includes
2015-03-17 23:17 [PATCH libdrm] autotools: remove ${srcdir} from the includes Emil Velikov
@ 2015-03-18 10:18 ` Emil Velikov
0 siblings, 0 replies; 2+ messages in thread
From: Emil Velikov @ 2015-03-18 10:18 UTC (permalink / raw)
To: dri-devel@lists.freedesktop.org; +Cc: emil.l.velikov
On 17/03/15 23:17, Emil Velikov wrote:
> Already implicitly handled by the compiler.
>
s/compiler/build system/
> Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
> ---
> Inspired while cleaning up the very same includes in the Android build.
>
> -Emil
>
> exynos/Makefile.am | 1 -
> freedreno/Makefile.am | 1 -
> intel/Makefile.am | 1 -
> nouveau/Makefile.am | 1 -
> omap/Makefile.am | 1 -
> radeon/Makefile.am | 1 -
> 6 files changed, 6 deletions(-)
>
> diff --git a/exynos/Makefile.am b/exynos/Makefile.am
> index 35bc71f..a9da0ff 100644
> --- a/exynos/Makefile.am
> +++ b/exynos/Makefile.am
> @@ -2,7 +2,6 @@ AM_CFLAGS = \
> $(WARN_CFLAGS) \
> $(VISIBILITY_CFLAGS) \
> -I$(top_srcdir) \
> - -I$(top_srcdir)/exynos \
> $(PTHREADSTUBS_CFLAGS) \
> -I$(top_srcdir)/include/drm
>
> diff --git a/freedreno/Makefile.am b/freedreno/Makefile.am
> index 4482afe..407ab70 100644
> --- a/freedreno/Makefile.am
> +++ b/freedreno/Makefile.am
> @@ -5,7 +5,6 @@ AM_CFLAGS = \
> $(WARN_CFLAGS) \
> $(VISIBILITY_CFLAGS) \
> -I$(top_srcdir) \
> - -I$(top_srcdir)/freedreno \
> $(PTHREADSTUBS_CFLAGS) \
> -I$(top_srcdir)/include/drm
>
> diff --git a/intel/Makefile.am b/intel/Makefile.am
> index ca4ed84..22a45f0 100644
> --- a/intel/Makefile.am
> +++ b/intel/Makefile.am
> @@ -28,7 +28,6 @@ AM_CFLAGS = \
> $(WARN_CFLAGS) \
> $(VISIBILITY_CFLAGS) \
> -I$(top_srcdir) \
> - -I$(top_srcdir)/intel \
> $(PTHREADSTUBS_CFLAGS) \
> $(PCIACCESS_CFLAGS) \
> $(VALGRIND_CFLAGS) \
> diff --git a/nouveau/Makefile.am b/nouveau/Makefile.am
> index 7543e43..1ca235d 100644
> --- a/nouveau/Makefile.am
> +++ b/nouveau/Makefile.am
> @@ -4,7 +4,6 @@ AM_CFLAGS = \
> $(WARN_CFLAGS) \
> $(VISIBILITY_CFLAGS) \
> -I$(top_srcdir) \
> - -I$(top_srcdir)/nouveau \
> $(PTHREADSTUBS_CFLAGS) \
> -I$(top_srcdir)/include/drm \
> -DDEBUG
> diff --git a/omap/Makefile.am b/omap/Makefile.am
> index 0778bdd..d6f5298 100644
> --- a/omap/Makefile.am
> +++ b/omap/Makefile.am
> @@ -2,7 +2,6 @@ AM_CFLAGS = \
> $(WARN_CFLAGS) \
> $(VISIBILITY_CFLAGS) \
> -I$(top_srcdir) \
> - -I$(top_srcdir)/omap \
> $(PTHREADSTUBS_CFLAGS) \
> -I$(top_srcdir)/include/drm
>
> diff --git a/radeon/Makefile.am b/radeon/Makefile.am
> index 4575065..5cca394 100644
> --- a/radeon/Makefile.am
> +++ b/radeon/Makefile.am
> @@ -28,7 +28,6 @@ AM_CFLAGS = \
> $(WARN_CFLAGS) \
> $(VISIBILITY_CFLAGS) \
> -I$(top_srcdir) \
> - -I$(top_srcdir)/radeon \
> $(PTHREADSTUBS_CFLAGS) \
> -I$(top_srcdir)/include/drm
>
>
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2015-03-18 10:18 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-03-17 23:17 [PATCH libdrm] autotools: remove ${srcdir} from the includes Emil Velikov
2015-03-18 10:18 ` Emil Velikov
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.