1*4882a593SmuzhiyunFrom 5b348e7be67957f4be6fcfa4942128c04f6db905 Mon Sep 17 00:00:00 2001
2*4882a593SmuzhiyunFrom: Adrian Alonso <b38018@freescale.com>
3*4882a593SmuzhiyunDate: Thu, 4 Aug 2011 14:24:26 -0500
4*4882a593SmuzhiyunSubject: [PATCH] xf86-video-imxfb: fix m4 hardcodded paths
5*4882a593Smuzhiyun
6*4882a593Smuzhiyun* Fix m4 macros lookup location; remove /usr/share/aclocal path
7*4882a593Smuzhiyun
8*4882a593SmuzhiyunSigned-off-by: Adrian Alonso <b38018@freescale.com>
9*4882a593Smuzhiyun---
10*4882a593Smuzhiyun Makefile.am  |    2 +-
11*4882a593Smuzhiyun Makefile.in  |    2 +-
12*4882a593Smuzhiyun configure.ac |    2 +-
13*4882a593Smuzhiyun 3 files changed, 3 insertions(+), 3 deletions(-)
14*4882a593Smuzhiyun
15*4882a593Smuzhiyundiff --git a/Makefile.am b/Makefile.am
16*4882a593Smuzhiyunindex 6752256..e205657 100644
17*4882a593Smuzhiyun--- a/Makefile.am
18*4882a593Smuzhiyun+++ b/Makefile.am
19*4882a593Smuzhiyun@@ -20,4 +20,4 @@
20*4882a593Smuzhiyun
21*4882a593Smuzhiyun AUTOMAKE_OPTIONS = foreign
22*4882a593Smuzhiyun SUBDIRS = src
23*4882a593Smuzhiyun-ACLOCAL_AMFLAGS = -I /usr/share/aclocal
24*4882a593Smuzhiyun+ACLOCAL_AMFLAGS = -I m4
25*4882a593Smuzhiyundiff --git a/Makefile.in b/Makefile.in
26*4882a593Smuzhiyunindex 5c0ba0e..f829db7 100644
27*4882a593Smuzhiyun--- a/Makefile.in
28*4882a593Smuzhiyun+++ b/Makefile.in
29*4882a593Smuzhiyun@@ -243,7 +243,7 @@ top_builddir = @top_builddir@
30*4882a593Smuzhiyun top_srcdir = @top_srcdir@
31*4882a593Smuzhiyun AUTOMAKE_OPTIONS = foreign
32*4882a593Smuzhiyun SUBDIRS = src
33*4882a593Smuzhiyun-ACLOCAL_AMFLAGS = -I /usr/share/aclocal
34*4882a593Smuzhiyun+ACLOCAL_AMFLAGS = -I m4
35*4882a593Smuzhiyun all: config.h
36*4882a593Smuzhiyun 	$(MAKE) $(AM_MAKEFLAGS) all-recursive
37*4882a593Smuzhiyun
38*4882a593Smuzhiyundiff --git a/configure.ac b/configure.ac
39*4882a593Smuzhiyunindex a1ac73b..0078b86 100644
40*4882a593Smuzhiyun--- a/configure.ac
41*4882a593Smuzhiyun+++ b/configure.ac
42*4882a593Smuzhiyun@@ -29,7 +29,7 @@ AC_INIT([xf86-video-imx],
43*4882a593Smuzhiyun AC_CONFIG_SRCDIR([Makefile.am])
44*4882a593Smuzhiyun AM_CONFIG_HEADER([config.h])
45*4882a593Smuzhiyun AC_CONFIG_AUX_DIR(.)
46*4882a593Smuzhiyun-AC_CONFIG_MACRO_DIR([/usr/share/aclocal])
47*4882a593Smuzhiyun+AC_CONFIG_MACRO_DIR([m4])
48*4882a593Smuzhiyun
49*4882a593Smuzhiyun AM_INIT_AUTOMAKE([dist-bzip2])
50*4882a593Smuzhiyun
51*4882a593Smuzhiyun--
52*4882a593Smuzhiyun1.7.4.1
53*4882a593Smuzhiyun
54