diff options
author | Max Kellermann <max@duempel.org> | 2008-10-16 15:00:02 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-10-16 15:00:02 +0200 |
commit | b2839540d6b93c682b30ec3b15b011e08edaa1d2 (patch) | |
tree | ba626a533bc509863221639109cc0fbac8afdf10 | |
parent | c0a9ef980f94f12fdd9ba7d1949b2a05111b5ade (diff) | |
download | mpd-b2839540d6b93c682b30ec3b15b011e08edaa1d2.tar.gz mpd-b2839540d6b93c682b30ec3b15b011e08edaa1d2.tar.xz mpd-b2839540d6b93c682b30ec3b15b011e08edaa1d2.zip |
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.
-rw-r--r-- | Makefile.am | 4 | ||||
-rw-r--r-- | doc/Makefile.am | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/Makefile.am b/Makefile.am index eb346693f..3b101edb2 100644 --- a/Makefile.am +++ b/Makefile.am @@ -2,8 +2,8 @@ ACLOCAL_AMFLAGS = -I m4 AUTOMAKE_OPTIONS = foreign 1.6 SUBDIRS = src doc -doc_DATA = README UPGRADING -EXTRA_DIST = COPYING $(doc_DATA) m4 autogen.sh scripts .gitignore +docs = README UPGRADING +EXTRA_DIST = COPYING $(docs) m4 autogen.sh scripts .gitignore sparse-check test: $(MAKE) -C src $@ 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) |