summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2001-06-28 20:23:14 +1000
committerDamien Miller <djm@mindrot.org>2001-06-28 20:23:14 +1000
commitacf59e68cbf38be8baa151c22edcfaf7724d0928 (patch)
treefccab34329e7a78bff852f8fc79b9fa34f4866c8
parent180207ffe1a54bb15d10ce54fdc854b8dcd0511f (diff)
- (djm) Fix from Lutz Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE> for my
broken makefile
-rw-r--r--ChangeLog4
-rw-r--r--Makefile.in4
2 files changed, 5 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index c4a3475e1..923ccff14 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
120010628 120010628
2 - (djm) Sync openbsd-compat with -current libc 2 - (djm) Sync openbsd-compat with -current libc
3 - (djm) Fix from Lutz Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE> for my
4 broken makefile
3 5
420010627 620010627
5 - (djm) Reintroduce pam_session call for non-pty sessions. 7 - (djm) Reintroduce pam_session call for non-pty sessions.
@@ -5812,4 +5814,4 @@
5812 - Wrote replacements for strlcpy and mkdtemp 5814 - Wrote replacements for strlcpy and mkdtemp
5813 - Released 1.0pre1 5815 - Released 1.0pre1
5814 5816
5815$Id: ChangeLog,v 1.1335 2001/06/28 04:48:28 djm Exp $ 5817$Id: ChangeLog,v 1.1336 2001/06/28 10:23:14 djm Exp $
diff --git a/Makefile.in b/Makefile.in
index 0458b3059..ac8b94a4e 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -1,4 +1,4 @@
1# $Id: Makefile.in,v 1.178 2001/06/27 11:52:33 djm Exp $ 1# $Id: Makefile.in,v 1.179 2001/06/28 10:23:15 djm Exp $
2 2
3prefix=@prefix@ 3prefix=@prefix@
4exec_prefix=@exec_prefix@ 4exec_prefix=@exec_prefix@
@@ -221,7 +221,7 @@ install-files:
221 if [ -f $(DESTDIR)$(sysconfdir)/primes ]; then \ 221 if [ -f $(DESTDIR)$(sysconfdir)/primes ]; then \
222 echo "moving $(DESTDIR)$(sysconfdir)/primes to $(DESTDIR)$(sysconfdir)/moduli"; \ 222 echo "moving $(DESTDIR)$(sysconfdir)/primes to $(DESTDIR)$(sysconfdir)/moduli"; \
223 mv "$(DESTDIR)$(sysconfdir)/primes" "$(DESTDIR)$(sysconfdir)/moduli"; \ 223 mv "$(DESTDIR)$(sysconfdir)/primes" "$(DESTDIR)$(sysconfdir)/moduli"; \
224 else ; \ 224 else \
225 $(INSTALL) -m 644 moduli.out $(DESTDIR)$(sysconfdir)/moduli; \ 225 $(INSTALL) -m 644 moduli.out $(DESTDIR)$(sysconfdir)/moduli; \
226 fi ; \ 226 fi ; \
227 else \ 227 else \