summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2001-11-12 10:34:22 +1100
committerDamien Miller <djm@mindrot.org>2001-11-12 10:34:22 +1100
commitf41d618fec126ae0d8083e2cc4c2074fbf023759 (patch)
tree5a79a7dd5fb5f3fed93eec9f07f823558c7b8f2a
parentde77b464c6214139ff5ef65521621d9245472c68 (diff)
- (djm) Makefile correctness fix from Mark D. Baushke <mdb@juniper.net>
-rw-r--r--CREDITS3
-rw-r--r--ChangeLog5
-rw-r--r--Makefile.in18
3 files changed, 15 insertions, 11 deletions
diff --git a/CREDITS b/CREDITS
index 00def351c..a05cbe2b4 100644
--- a/CREDITS
+++ b/CREDITS
@@ -54,6 +54,7 @@ Kiyokazu SUTO <suto@ks-and-ks.ne.jp> - Bugfixes
54Larry Jones <larry.jones@sdrc.com> - Bugfixes 54Larry Jones <larry.jones@sdrc.com> - Bugfixes
55Lutz Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE> - Bugfixes 55Lutz Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE> - Bugfixes
56Marc G. Fournier <marc.fournier@acadiau.ca> - Solaris patches 56Marc G. Fournier <marc.fournier@acadiau.ca> - Solaris patches
57Mark D. Baushke <mdb@juniper.net> - bug fixes
57Martin Johansson <fatbob@acc.umu.se> - Linux fixes 58Martin Johansson <fatbob@acc.umu.se> - Linux fixes
58Mark D. Roth <roth+openssh@feep.net> - Features, bug fixes 59Mark D. Roth <roth+openssh@feep.net> - Features, bug fixes
59Mark Miller <markm@swoon.net> - Bugfixes 60Mark Miller <markm@swoon.net> - Bugfixes
@@ -88,5 +89,5 @@ Apologies to anyone I have missed.
88 89
89Damien Miller <djm@mindrot.org> 90Damien Miller <djm@mindrot.org>
90 91
91$Id: CREDITS,v 1.62 2001/04/16 00:41:46 djm Exp $ 92$Id: CREDITS,v 1.63 2001/11/11 23:34:22 djm Exp $
92 93
diff --git a/ChangeLog b/ChangeLog
index b2f58c36e..8dc679a6a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
120011112
2 - (djm) Makefile correctness fix from Mark D. Baushke <mdb@juniper.net>
3
120011109 420011109
2 - (stevesk) auth-pam.c: use do_pam_authenticate(PAM_DISALLOW_NULL_AUTHTOK) 5 - (stevesk) auth-pam.c: use do_pam_authenticate(PAM_DISALLOW_NULL_AUTHTOK)
3 if permit_empty_passwd == 0 so null password check cannot be bypassed. 6 if permit_empty_passwd == 0 so null password check cannot be bypassed.
@@ -6806,4 +6809,4 @@
6806 - Wrote replacements for strlcpy and mkdtemp 6809 - Wrote replacements for strlcpy and mkdtemp
6807 - Released 1.0pre1 6810 - Released 1.0pre1
6808 6811
6809$Id: ChangeLog,v 1.1632 2001/11/09 20:22:16 stevesk Exp $ 6812$Id: ChangeLog,v 1.1633 2001/11/11 23:34:22 djm Exp $
diff --git a/Makefile.in b/Makefile.in
index 9bf8a425c..f484dc3a0 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -1,4 +1,4 @@
1# $Id: Makefile.in,v 1.189 2001/10/22 00:53:59 tim Exp $ 1# $Id: Makefile.in,v 1.190 2001/11/11 23:34:23 djm Exp $
2 2
3prefix=@prefix@ 3prefix=@prefix@
4exec_prefix=@exec_prefix@ 4exec_prefix=@exec_prefix@
@@ -87,7 +87,7 @@ $(SSHDOBJS): config.h
87 87
88LIBCOMPAT=openbsd-compat/libopenbsd-compat.a 88LIBCOMPAT=openbsd-compat/libopenbsd-compat.a
89$(LIBCOMPAT): always 89$(LIBCOMPAT): always
90 (cd openbsd-compat; $(MAKE)) 90 (cd openbsd-compat && $(MAKE))
91always: 91always:
92 92
93libssh.a: $(LIBSSH_OBJS) 93libssh.a: $(LIBSSH_OBJS)
@@ -144,23 +144,23 @@ $(CONFIGFILES): $(CONFIGFILES_IN)
144clean: 144clean:
145 rm -f *.o *.a $(TARGETS) logintest config.cache config.log 145 rm -f *.o *.a $(TARGETS) logintest config.cache config.log
146 rm -f *.out core 146 rm -f *.out core
147 (cd openbsd-compat; $(MAKE) clean) 147 (cd openbsd-compat && $(MAKE) clean)
148 148
149distclean: 149distclean:
150 rm -f *.o *.a $(TARGETS) logintest config.cache config.log 150 rm -f *.o *.a $(TARGETS) logintest config.cache config.log
151 rm -f *.out core 151 rm -f *.out core
152 rm -f Makefile config.h config.status ssh_prng_cmds *~ 152 rm -f Makefile config.h config.status ssh_prng_cmds *~
153 rm -rf autom4te.cache 153 rm -rf autom4te.cache
154 (cd openbsd-compat; $(MAKE) distclean) 154 (cd openbsd-compat && $(MAKE) distclean)
155 (cd scard; $(MAKE) distclean) 155 (cd scard && $(MAKE) distclean)
156 156
157veryclean: 157veryclean:
158 rm -f configure config.h.in *.0 158 rm -f configure config.h.in *.0
159 rm -f *.o *.a $(TARGETS) logintest config.cache config.log 159 rm -f *.o *.a $(TARGETS) logintest config.cache config.log
160 rm -f *.out core 160 rm -f *.out core
161 rm -f Makefile config.h config.status ssh_prng_cmds *~ 161 rm -f Makefile config.h config.status ssh_prng_cmds *~
162 (cd openbsd-compat; $(MAKE) distclean) 162 (cd openbsd-compat && $(MAKE) distclean)
163 (cd scard; $(MAKE) distclean) 163 (cd scard && $(MAKE) distclean)
164 164
165mrproper: distclean 165mrproper: distclean
166 166
@@ -174,13 +174,13 @@ catman-do:
174 174
175distprep: catman-do 175distprep: catman-do
176 autoreconf 176 autoreconf
177 (cd scard ; $(MAKE) -f Makefile.in distprep) 177 (cd scard && $(MAKE) -f Makefile.in distprep)
178 178
179install: $(CONFIGFILES) $(MANPAGES) $(TARGETS) install-files host-key 179install: $(CONFIGFILES) $(MANPAGES) $(TARGETS) install-files host-key
180install-nokeys: $(CONFIGFILES) $(MANPAGES) $(TARGETS) install-files 180install-nokeys: $(CONFIGFILES) $(MANPAGES) $(TARGETS) install-files
181 181
182scard-install: 182scard-install:
183 (cd scard; $(MAKE) DESTDIR=$(DESTDIR) install) 183 (cd scard && $(MAKE) DESTDIR=$(DESTDIR) install)
184 184
185install-files: scard-install 185install-files: scard-install
186 $(srcdir)/mkinstalldirs $(DESTDIR)$(bindir) 186 $(srcdir)/mkinstalldirs $(DESTDIR)$(bindir)