From: Ben Pfaff Date: Wed, 25 Jan 2012 18:32:24 +0000 (-0800) Subject: Makefiles: Define dist_man_MANS before trying to add to it. X-Git-Tag: v0.7.9~19 X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?p=pspp-builds.git;a=commitdiff_plain;h=3039501eeeb280c2bd6dae91a9471f8372c52698 Makefiles: Define dist_man_MANS before trying to add to it. Fixes Automake complaint: utilities/automake.mk:2: dist_man_MANS must be set with `=' before using `+=' Reported-by: John Darrington --- diff --git a/Makefile.am b/Makefile.am index 3d2e6916..48ec5073 100644 --- a/Makefile.am +++ b/Makefile.am @@ -40,7 +40,7 @@ noinst_LTLIBRARIES= noinst_PROGRAMS= check_PROGRAMS= bin_PROGRAMS= -man_MANS = +dist_man_MANS = DIST_HOOKS = INSTALL_DATA_HOOKS = UNINSTALL_DATA_HOOKS =