blob: c6602ff796305cdae00e5684cde371a995a7d4a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
$NetBSD: patch-Makefile.in.in,v 1.2 2016/04/13 13:52:27 hauke Exp $
Avoid picking up local config when checking features
Install {c,e}tags man pages with xemada prefix
--- Makefile.in.in.orig 2015-01-29 15:04:29.000000000 +0000
+++ Makefile.in.in
@@ -407,7 +407,7 @@ lwlib/config.h: ${srcdir}/lwlib/config.h
## all. --cet
check-features: all
- ${blddir}/src/${PROGNAME} -batch -l check-features.el
+ ${blddir}/src/${PROGNAME} -vanilla -batch -l check-features.el
install-only: ${MAKE_SUBDIR} check-features install-arch-dep install-arch-indep
@@ -495,8 +495,10 @@ install-arch-indep: mkdir info
fi
cd ${srcdir}/etc && \
for page in xemacs etags ctags gnuserv gnuclient gnuattach gnudoit; do \
- ${INSTALL_DATA} ${srcdir}/etc/$${page}.1 ${mandir}/$${page}${manext} ; \
- chmod 0644 ${mandir}/$${page}${manext} ; \
+ if test $${page} = etags || test $${page} = ctags ; then \
+ ${BSD_INSTALL_MAN} ${srcdir}/etc/$${page}.1 ${mandir}/xemacs-$${page}${manext} ; else \
+ ${BSD_INSTALL_MAN} ${srcdir}/etc/$${page}.1 ${mandir}/$${page}${manext} ; \
+ fi \
done
@echo "If you would like to save approximately 2M of disk space, do"
@echo "make gzip-el"
|