[983] in Kerberos-V5-bugs
make install of man pages when build tree != source tree
daemon@ATHENA.MIT.EDU (epeisach@MIT.EDU)
Thu Dec 8 06:42:49 1994
From: epeisach@MIT.EDU
Date: Thu, 8 Dec 1994 06:42:40 -0500
To: krb5-bugs@MIT.EDU
make install fails when the source tree is not the build tree.
The following Makefile.in have the standard error of not specifying
$(srcdir)/ before the man page to be installed.
appl/bsd/Makefile.in
appl/telnet/telnet/Makefile.in
appl/telnet/telnetd/Makefile.in
include/krb5/Makefile.in has the additional problem installing
BUILT_HEADERS:
install::
@set -x; for f in $(KRB5_HEADERS) $(BUILT_HEADERS) $(ET_HEADERS); \
do $(INSTALL_DATA) $(srcdir)/$$f $(DESTDIR)$(KRB5_INCDIR)/krb5/$$f ; \
done
This needs to be broken up as BUILT_HEADERS are not located in srcdir!!!
Ezra