From 7645a4ec5f99ecc1535c81fa7188abc26d30c7be Mon Sep 17 00:00:00 2001 From: Hallvard Furuseth Date: Thu, 11 Mar 1999 19:43:26 +0000 Subject: [PATCH] Fix Makefile.in: Install in bindir instead of libexecdir. Install manpage. --- contrib/saucer/Makefile.in | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/contrib/saucer/Makefile.in b/contrib/saucer/Makefile.in index 39aa66577a..e15d9db6ce 100644 --- a/contrib/saucer/Makefile.in +++ b/contrib/saucer/Makefile.in @@ -11,9 +11,13 @@ READLINE_LIBS = @READLINE_LIBS@ XLIBS = -lldap -llber -llutil XXLIBS = $(KRB_LIBS) $(LUTIL_LIBS) $(READLINE_LIBS) $(TERMCAP_LIBS) +MANDIR=$(mandir)/man1 + saucer: ${OBJS} $(LDAP_LIBDEPEND) $(LTLINK) -o $@ $(OBJS) $(LIBS) install-local: $(PROGRAMS) FORCE - -$(MKDIR) $(libexecdir) - $(LTINSTALL) $(INSTALLFLAGS) -m 755 saucer $(libexecdir) + -$(MKDIR) $(bindir) + $(LTINSTALL) $(INSTALLFLAGS) -m 755 saucer $(bindir) + -test -d $(MANDIR) || $(MKDIR) $(mandir) $(MANDIR) + $(INSTALL) $(INSTALLFLAGS) -m 644 saucer.1 $(MANDIR)/saucer.1 -- 2.39.5