summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorTollef Fog Heen <tfheen@err.no>2010-05-16 11:01:44 +0200
committerLennart Poettering <lennart@poettering.net>2010-05-16 18:17:35 +0200
commitbf024b022d9f53d2bb8d26107b4878cede3167b7 (patch)
treeed8b8b95e49881c39c81b327326a07a6362459b3 /configure.ac
parent3ff467472ee1167f75d8fd60544df8872c63c116 (diff)
build-sys: rename --with-distro=none to --with-distro=other
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index a5e3613b92..f4423d343a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -138,7 +138,7 @@ AC_SUBST(VAPIDIR)
AC_PATH_PROG([XSLTPROC], [xsltproc])
AM_CONDITIONAL(HAVE_XSLTPROC, test x"$XSLTPROC" != x)
-AC_ARG_WITH(distro, AS_HELP_STRING([--with-distro=DISTRO],[Specify the distribution to target: One of fedora, suse, debian, arch, gentoo, or none]))
+AC_ARG_WITH(distro, AS_HELP_STRING([--with-distro=DISTRO],[Specify the distribution to target: One of fedora, suse, debian, arch, gentoo or other]))
if test "z$with_distro" = "z"; then
if test "$cross_compiling" = yes; then
AC_MSG_WARN([Target distribution cannot be reliably detected when cross-compiling. You should specify it with --with-distro (see $0 --help for recognized distros)])
@@ -199,14 +199,14 @@ case $with_distro in
special_syslog_service=syslog.service
AC_DEFINE(TARGET_SLACKWARE, [], [Target is Slackware])
;;
- none)
+ other)
SYSTEM_SYSVINIT_PATH=/fix/the/configure/script
SYSTEM_SYSVRCND_PATH=/fix/the/configure/script
special_dbus_service=fix-the-configure-script.service
special_syslog_service=fix-the-configure-script.service
;;
*)
- AC_MSG_ERROR([Your distribution (${with_distro}) is not yet supported, SysV init scripts could not be found! (patches welcome); you can specify --with-distro=none to skip this check])
+ AC_MSG_ERROR([Your distribution (${with_distro}) is not yet supported, SysV init scripts could not be found! (patches welcome); you can specify --with-distro=other to skip this check])
;;
esac