+* Fix the man page installation for the scripts/ files.
(4.2.7p414) 2014/01/28 Released by Harlan Stenn <stenn@ntp.org>
* [Bug 792] TrueTime TL-3 WWV refclock support.
* [Bug 898] Documentation fixes.
sbin_SCRIPTS= $(CALC_TICKADJ_DS)
EXTRA_SCRIPTS= calc_tickadj
+man1_MANS=
+man8_MANS=
manpage_HACK=
if WANT_CALC_TICKADJ_MS
man_MANS= calc_tickadj.$(CALC_TICKADJ_MS)
libexec_SCRIPTS = $(NTP_WAIT_DL)
sbin_SCRIPTS = $(NTP_WAIT_DS)
+man1_MANS=
+man8_MANS=
man_MANS= ntp-wait.$(NTP_WAIT_MS)
run_ag= cd $(srcdir) && env PATH="$(abs_builddir):$(PATH)" PERL5LIB="$(abs_top_srcdir)/scripts/lib" \
noinst_SCRIPTS= $(NTPSWEEP_NI)
EXTRA_SCRIPTS= ntpsweep
+man1_MANS=
+man8_MANS=
if INSTALL_NTPSWEEP
man_MANS= ntpsweep.$(NTPSWEEP_MS)
else
NULL=
+man1_MANS=
+man8_MANS=
man_MANS= ntptrace.$(NTPTRACE_MS)
bin_SCRIPTS = $(NTPTRACE_DB)
If no "mode specific" file has been found and the "uname" command returns
"Linux", we will look for loc/linux .
+
+Note that automake has interesting behavior - we build the man pages using
+the man_MANS target, but they are actually installed using the empty
+manX_MANS= target, which "does the right thing". This means that we
+need to have empty manX_MANS= targets for each possible X, based on
+the data in the loc/ files. For executables, this generally means
+sections 1 and 8.