Code

properly configure M4 macro dir
authorunK <electricityispower@gmail.com>
Fri, 19 Sep 2008 14:37:06 +0000 (16:37 +0200)
committerMax Kellermann <max@duempel.org>
Fri, 19 Sep 2008 14:37:06 +0000 (16:37 +0200)
Add information about the M4 macro dir ./m4/ to both configure.ac and
Makefile.am.

Makefile.am
configure.ac

index 9a01c2aab65a27861c2b89a8730a5d426a1000f9..456cb532c6abaebb2a37cab3ab798f19e1364d41 100644 (file)
@@ -3,6 +3,7 @@ SUBDIRS = \
   doc\
   po
 
+ACLOCAL_AMFLAGS = -I m4
 AUTOMAKE_OPTIONS =   gnu 1.6
 
 # $Id$
index bf9b4e526439d69f8acf6e9bd00ae3c78f41b977..7ed5cec1f0b9233be96064c47e08437648a44284 100644 (file)
@@ -6,6 +6,7 @@ AC_INIT
 AC_CONFIG_SRCDIR([src/main.c])
 AM_INIT_AUTOMAKE([ncmpc], [0.12~git])
 AM_CONFIG_HEADER([config.h])
+AC_CONFIG_MACRO_DIR([m4])
 
 dnl Check for programs
 AC_PROG_CC_C99