"make install" broken in cvs
Darren Tucker
dtucker at zip.com.au
Mon Apr 15 08:18:59 EST 2002
This applies to all platforms, I think:
$ make install
[snip]
if [ ! -z "yes" ]; then \
./install-sh -c -m 644 ssh-rand-helper.8.out /home/dtucker/openssh/openssh-cvs-test/contrib/aix/package/usr/local/man/man8/ssh-rand-helper.8
/bin/sh: 0403-057 Syntax error at line 1 : `then' is not matched.
make: *** [install-files] Error 2
Looks like missing line continuation in Makefile.in.
-Daz.
$ diff -u Makefile.in.orig Makefile.in
--- Makefile.in.orig Mon Apr 15 08:12:03 2002
+++ Makefile.in Mon Apr 15 08:12:32 2002
@@ -218,7 +218,7 @@
$(INSTALL) -m 644 ssh-keyscan.1.out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-keyscan.1
$(INSTALL) -m 644 sshd.8.out $(DESTDIR)$(mandir)/$(mansubdir)8/sshd.8
if [ ! -z "$(INSTALL_SSH_PRNG_CMDS)" ]; then \
- $(INSTALL) -m 644 ssh-rand-helper.8.out $(DESTDIR)$(mandir)/$(mansubdir)8/ssh-rand-helper.8
+ $(INSTALL) -m 644 ssh-rand-helper.8.out $(DESTDIR)$(mandir)/$(mansubdir)8/ssh-rand-helper.8 ; \
fi
@NO_SFTP@$(INSTALL) -m 644 sftp.1.out $(DESTDIR)$(mandir)/$(mansubdir)1/sftp.1
@NO_SFTP@$(INSTALL) -m 644 sftp-server.8.out $(DESTDIR)$(mandir)/$(mansubdir)8/sftp-server.8
More information about the openssh-unix-dev
mailing list