Added a warning if sysconfdir is set to /usr/etc.

DEVEL_2_0_BRANCH-1
Henning Geinitz 2002-10-27 12:58:51 +00:00
rodzic c896009ed6
commit 929e26fe29
3 zmienionych plików z 15 dodań i 2 usunięć

Wyświetl plik

@ -1,3 +1,8 @@
2002-10-27 Henning Meier-Geinitz <henning@meier-geinitz.de>
* configure configure.in: Added a warning if sysconfdir is set to
/usr/etc.
2002-10-25 Henning Meier-Geinitz <henning@meier-geinitz.de>
* backend/Makefile.in backend/dll.conf backend/gt68xx.c

6
configure vendored
Wyświetl plik

@ -9172,10 +9172,14 @@ else
echo "*** SANE files and reinstall this version."
fi
fi
if eval "test x${sysconfdir} = x/usr/etc" ; then
echo "*** WARNING: Configuration files are stored in /usr/etc. If this is not"
echo "*** intended, use --sysconfdir to set another path (e.g. "/etc")."
fi
if test "$SELECTED_BACKENDS" != "" ; then
echo "*** Warning: Local backends have been disabled. This means that scanners"
echo "*** connected to your local computer won't be supported. Only a network"
echo "*** connection to a remote host ist possible."
echo "*** connection to a remote host is possible."
fi
echo "****************************************************************"

Wyświetl plik

@ -497,10 +497,14 @@ else
echo "*** SANE files and reinstall this version."
fi
fi
if eval "test x${sysconfdir} = x/usr/etc" ; then
echo "*** WARNING: Configuration files are stored in /usr/etc. If this is not"
echo "*** intended, use --sysconfdir to set another path (e.g. "/etc")."
fi
if test "$SELECTED_BACKENDS" != "" ; then
echo "*** Warning: Local backends have been disabled. This means that scanners"
echo "*** connected to your local computer won't be supported. Only a network"
echo "*** connection to a remote host ist possible."
echo "*** connection to a remote host is possible."
fi
echo "****************************************************************"