bug-gnu-utils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

RCS 5.7 `make install` error


From: Kevin Rodgers
Subject: RCS 5.7 `make install` error
Date: Tue, 22 May 2001 12:22:13 -0600

`make install` fails to install man/rcsfile.5:

{ test -f rcsfile.5 || cd ../../man; } && \
../../install-sh -c -m 644 rcsfile.5 /usr/local/man/man5/rcsfile.5
/bin/sh: ../../install-sh: not found
make: [install] Error 1 (ignored)

The fix is straightforward; just use the same command format to install
rcsfile.5 as the $(man1pages) files:

*** rcs-5.7/man/Makefile.in~    Fri Jun 16 00:19:24 1995
--- rcs-5.7/man/Makefile.in     Tue May 22 12:14:23 2001
***************
*** 57,64 ****
        -for m in $(man1pages); do \
                $(INSTALL_DATA) $(srcdir)/$$m.1 $(man1dir)/$$m$(man1ext); \
        done
!       -{ test -f rcsfile.5 || cd $(srcdir); } && \
!       $(INSTALL_DATA) rcsfile.5 $(man5dir)/rcsfile$(man5ext)
  
  uninstall ::
        for m in $(man1pages); do \
--- 57,63 ----
        -for m in $(man1pages); do \
                $(INSTALL_DATA) $(srcdir)/$$m.1 $(man1dir)/$$m$(man1ext); \
        done
!       -$(INSTALL_DATA) $(srcdir)/rcsfile.5 $(man5dir)/rcsfile$(man5ext)
  
  uninstall ::
        for m in $(man1pages); do \

-- 
Kevin Rodgers <address@hidden>          Lead Software Engineer
Information Handling Services           Electronic Systems Development
15 Inverness Way East, M/S A114         GO BUFFS!
Englewood CO 80112-5776 USA             1+ (303) 397-2807[voice]/705-4258[fax]



reply via email to

[Prev in Thread] Current Thread [Next in Thread]