summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2000-05-20 15:33:44 +1000
committerDamien Miller <djm@mindrot.org>2000-05-20 15:33:44 +1000
commitfda78d9bd07673e14e8646798a7453e3d9302de5 (patch)
tree944046756e29f962e954945e02062321390922e2 /Makefile.in
parent7d6656c1283f46d9cdbba707ea2373af3d994585 (diff)
- HPUX and Configure fixes from Lutz Jaenicke
<Lutz.Jaenicke@aet.TU-Cottbus.DE> - Use mkinstalldirs script to make directories instead of non-portable "install -d". Suggested by Lutz Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE>
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in12
1 files changed, 6 insertions, 6 deletions
diff --git a/Makefile.in b/Makefile.in
index 0dc71c6cd..584f3054d 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -109,11 +109,11 @@ catman-do:
109 done 109 done
110 110
111install: manpages $(TARGETS) 111install: manpages $(TARGETS)
112 $(INSTALL) -d $(DESTDIR)$(bindir) 112 ./mkinstalldirs $(DESTDIR)$(bindir)
113 $(INSTALL) -d $(DESTDIR)$(sbindir) 113 ./mkinstalldirs $(DESTDIR)$(sbindir)
114 $(INSTALL) -d $(DESTDIR)$(mandir) 114 ./mkinstalldirs $(DESTDIR)$(mandir)
115 $(INSTALL) -d $(DESTDIR)$(mandir)/$(mansubdir)1 115 ./mkinstalldirs $(DESTDIR)$(mandir)/$(mansubdir)1
116 $(INSTALL) -d $(DESTDIR)$(mandir)/$(mansubdir)8 116 ./mkinstalldirs $(DESTDIR)$(mandir)/$(mansubdir)8
117 $(INSTALL) -m 4755 -s ssh $(DESTDIR)$(bindir)/ssh 117 $(INSTALL) -m 4755 -s ssh $(DESTDIR)$(bindir)/ssh
118 $(INSTALL) -s scp $(DESTDIR)$(bindir)/scp 118 $(INSTALL) -s scp $(DESTDIR)$(bindir)/scp
119 $(INSTALL) -s ssh-add $(DESTDIR)$(bindir)/ssh-add 119 $(INSTALL) -s ssh-add $(DESTDIR)$(bindir)/ssh-add
@@ -132,7 +132,7 @@ install: manpages $(TARGETS)
132 ln -s ssh.1 $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1 132 ln -s ssh.1 $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
133 133
134 if [ ! -f $(DESTDIR)$(sysconfdir)/ssh_config -a ! -f $(DESTDIR)$(sysconfdir)/sshd_config ]; then \ 134 if [ ! -f $(DESTDIR)$(sysconfdir)/ssh_config -a ! -f $(DESTDIR)$(sysconfdir)/sshd_config ]; then \
135 $(INSTALL) -d $(DESTDIR)$(sysconfdir); \ 135 ./mkinstalldirs $(DESTDIR)$(sysconfdir); \
136 $(INSTALL) -m 644 ssh_config.out $(DESTDIR)$(sysconfdir)/ssh_config; \ 136 $(INSTALL) -m 644 ssh_config.out $(DESTDIR)$(sysconfdir)/ssh_config; \
137 $(INSTALL) -m 644 sshd_config.out $(DESTDIR)$(sysconfdir)/sshd_config; \ 137 $(INSTALL) -m 644 sshd_config.out $(DESTDIR)$(sysconfdir)/sshd_config; \
138 fi 138 fi