From b2839540d6b93c682b30ec3b15b011e08edaa1d2 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Thu, 16 Oct 2008 15:00:02 +0200 Subject: Makefile.am: fix automake 1.6 errors When building with the ancient automake 1.6 version, the following errors occur: Makefile.am:5: invalid variable `doc_DATA' doc/Makefile.am:2: invalid variable `doc_DATA' This patches renames some internal variables. --- doc/Makefile.am | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'doc') diff --git a/doc/Makefile.am b/doc/Makefile.am index 9cba2f08a..8af678d38 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -1,3 +1,3 @@ -man_MANS = mpd.1 mpd.conf.5 -doc_DATA = COMMANDS mpdconf.example -EXTRA_DIST = $(man_MANS) $(doc_DATA) +manpages = mpd.1 mpd.conf.5 +docs = COMMANDS mpdconf.example +EXTRA_DIST = $(manpages) $(docs) -- cgit v1.2.3