summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog1
-rw-r--r--configure.in2
2 files changed, 2 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 060539f59..5742a59c7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,7 @@
120000612 120000612
2 - (djm) Glob manpages in RPM spec files to catch compressed files 2 - (djm) Glob manpages in RPM spec files to catch compressed files
3 - (djm) Full license in auth-pam.c 3 - (djm) Full license in auth-pam.c
4 - (djm) Configure fixes from SAKAI Kiyotaka <ksakai@kso.netwk.ntt-at.co.jp>
4 5
520000610 620000610
6 - (djm) Minor doc tweaks 7 - (djm) Minor doc tweaks
diff --git a/configure.in b/configure.in
index 9eb38393e..a9b3d2f35 100644
--- a/configure.in
+++ b/configure.in
@@ -1003,7 +1003,7 @@ AC_TRY_COMPILE([
1003if test -z "$conf_lastlog_location"; then 1003if test -z "$conf_lastlog_location"; then
1004 if test x"$system_lastlog_path" = x"no" ; then 1004 if test x"$system_lastlog_path" = x"no" ; then
1005 for f in /var/log/lastlog /usr/adm/lastlog /var/adm/lastlog /etc/security/lastlog ; do 1005 for f in /var/log/lastlog /usr/adm/lastlog /var/adm/lastlog /etc/security/lastlog ; do
1006 if test -d "$f" -o -e "$f" ; then 1006 if test -d "$f" -o -f "$f" ; then
1007 conf_lastlog_location=$f 1007 conf_lastlog_location=$f
1008 fi 1008 fi
1009 done 1009 done