diff options
author | Thierry Reding <thierry.reding@avionic-design.de> | 2012-11-08 14:28:09 +0100 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2012-11-29 11:55:19 +1000 |
commit | 5b3f6e347ae1763f066848a07554e8d33e17662e (patch) | |
tree | cc4a23fb03146d123c284275acf9d8aa46c6c8f1 | |
parent | 07e4b5c5e766d06a91178a0ff7589c842ee509fb (diff) |
build: Put m4 macros in m4 subdirectory
This silences a warning from libtoolize when running the autogen.sh
script.
Signed-off-by: Thierry Reding <thierry.reding@avionic-design.de>
Signed-off-by: Dave Airlie <airlied@redhat.com>
-rw-r--r-- | Makefile.am | 2 | ||||
-rwxr-xr-x | autogen.sh | 1 | ||||
-rw-r--r-- | configure.ac | 1 |
3 files changed, 4 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 8e4dfdb..a7ab3e0 100644 --- a/Makefile.am +++ b/Makefile.am @@ -18,6 +18,8 @@ # 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 = -I m4 + SUBDIRS = src man MAINTAINERCLEANFILES = ChangeLog INSTALL @@ -5,6 +5,7 @@ test -z "$srcdir" && srcdir=. ORIGDIR=`pwd` cd $srcdir +test -d m4 || mkdir m4 autoreconf -v --install || exit 1 cd $ORIGDIR || exit $? diff --git a/configure.ac b/configure.ac index b6815c4..58b1666 100644 --- a/configure.ac +++ b/configure.ac @@ -28,6 +28,7 @@ AC_INIT([xf86-video-modesetting], [xf86-video-modesetting]) AC_CONFIG_SRCDIR([Makefile.am]) AC_CONFIG_HEADERS([config.h]) +AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_AUX_DIR(.) AC_SYS_LARGEFILE |