From: unK Date: Fri, 19 Sep 2008 14:37:06 +0000 (+0200) Subject: properly configure M4 macro dir X-Git-Tag: v0.12_alpha1~218 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=c6cdd058cceafeac43ff5f792928d9bf731ca0f8;p=ncmpc.git properly configure M4 macro dir Add information about the M4 macro dir ./m4/ to both configure.ac and Makefile.am. --- diff --git a/Makefile.am b/Makefile.am index 9a01c2a..456cb53 100644 --- a/Makefile.am +++ b/Makefile.am @@ -3,6 +3,7 @@ SUBDIRS = \ doc\ po +ACLOCAL_AMFLAGS = -I m4 AUTOMAKE_OPTIONS = gnu 1.6 # $Id$ diff --git a/configure.ac b/configure.ac index bf9b4e5..7ed5cec 100644 --- a/configure.ac +++ b/configure.ac @@ -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