autofs-5.0.3 - add missing confdir location

From: Ian Kent <raven@themaw.net>

The list of possible directories which hold the autofs configuration
is missing /etc/default.
---

 aclocal.m4 |    2 +-
 configure  |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/aclocal.m4 b/aclocal.m4
index 9ef4050..52a1e47 100644
--- a/aclocal.m4
+++ b/aclocal.m4
@@ -95,7 +95,7 @@ dnl Check the location of the configuration defaults directory
 dnl --------------------------------------------------------------------------
 AC_DEFUN(AF_CONF_D,
 [if test -z "$confdir"; then
-  for conf_d in /etc/sysconfig /etc/defaults /etc/conf.d; do
+  for conf_d in /etc/sysconfig /etc/defaults /etc/conf.d /etc/default; do
     if test -z "$confdir"; then
       if test -d "$conf_d"; then
 	confdir="$conf_d"
diff --git a/configure b/configure
index 9278196..10e44cb 100755
--- a/configure
+++ b/configure
@@ -1791,7 +1791,7 @@ fi
 # Location of system config script directory?
 #
 if test -z "$confdir"; then
-  for conf_d in /etc/sysconfig /etc/defaults /etc/conf.d; do
+  for conf_d in /etc/sysconfig /etc/defaults /etc/conf.d /etc/default; do
     if test -z "$confdir"; then
       if test -d "$conf_d"; then
 	confdir="$conf_d"