summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2000-07-11 18:39:20 +1000
committerDamien Miller <djm@mindrot.org>2000-07-11 18:39:20 +1000
commit54ba469f20ff65fad2cc011ba2f83b17dce002f4 (patch)
tree28ea668828b738d59f1d7aaad2cfea794ec4130d /Makefile.in
parent4d97ba22570f1edebeed41ce33f7ca06475a173f (diff)
- (djm) Don't generate host keys when $(DESTDIR) is set (e.g. during RPM
builds)
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in20
1 files changed, 11 insertions, 9 deletions
diff --git a/Makefile.in b/Makefile.in
index d8a3f4685..23e2bce8f 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -150,15 +150,17 @@ install-files:
150 fi 150 fi
151 151
152host-key: ssh-keygen 152host-key: ssh-keygen
153 if [ -f "$(DESTDIR)$(sysconfdir)/ssh_host_key" ] ; then \ 153 if [ -z "$(DESTDIR)" ] ; then \
154 echo "$(DESTDIR)$(sysconfdir)/ssh_host_key already exists, skipping." ; \ 154 if [ -f "$(DESTDIR)$(sysconfdir)/ssh_host_key" ] ; then \
155 else \ 155 echo "$(DESTDIR)$(sysconfdir)/ssh_host_key already exists, skipping." ; \
156 ./ssh-keygen -b 1024 -f $(DESTDIR)$(sysconfdir)/ssh_host_key -N "" ; \ 156 else \
157 fi ; \ 157 ./ssh-keygen -b 1024 -f $(DESTDIR)$(sysconfdir)/ssh_host_key -N "" ; \
158 if [ -f $(DESTDIR)$(sysconfdir)/ssh_host_dsa_key ] ; then \ 158 fi ; \
159 echo "$(DESTDIR)$(sysconfdir)/ssh_host_dsa_key already exists, skipping." ; \ 159 if [ -f $(DESTDIR)$(sysconfdir)/ssh_host_dsa_key ] ; then \
160 else \ 160 echo "$(DESTDIR)$(sysconfdir)/ssh_host_dsa_key already exists, skipping." ; \
161 ./ssh-keygen -d -f $(DESTDIR)$(sysconfdir)/ssh_host_dsa_key -N "" ; \ 161 else \
162 ./ssh-keygen -d -f $(DESTDIR)$(sysconfdir)/ssh_host_dsa_key -N "" ; \
163 fi ; \
162 fi ; 164 fi ;
163 165
164host-key-force: ssh-keygen 166host-key-force: ssh-keygen