summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorKay Sievers <kay@vrfy.org>2013-03-25 18:49:55 +0100
committerKay Sievers <kay@vrfy.org>2013-03-25 19:28:00 +0100
commit5ec6b15b65304d94dc1c8cbad05c8b996b470d3a (patch)
tree0e16c73801bffdc26eba7745bd80e584095d1620 /configure.ac
parentd95fd3df5997b0dab8650d9427997d295d0975e3 (diff)
build-sys: add missing sed substitution for DEBUGTTY
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac12
1 files changed, 6 insertions, 6 deletions
diff --git a/configure.ac b/configure.ac
index d6e5a090bd..1c9d5596ea 100644
--- a/configure.ac
+++ b/configure.ac
@@ -275,11 +275,11 @@ if test "x$enable_selinux" != "xno"; then
fi
AM_CONDITIONAL(HAVE_SELINUX, [test "$have_selinux" = "yes"])
if test "x${have_selinux}" != xno ; then
- sushell=/sbin/sushell
+ SUSHELL=/sbin/sushell
else
- sushell=/bin/sh
+ SUSHELL=/bin/sh
fi
-AC_SUBST(sushell)
+AC_SUBST(SUSHELL)
# ------------------------------------------------------------------------------
have_xz=no
@@ -755,13 +755,13 @@ AS_IF([test "x$enable_keymap" = "xyes"], [
AM_CONDITIONAL([ENABLE_KEYMAP], [test "x$enable_keymap" = "xyes"])
# ------------------------------------------------------------------------------
-debugshell=/dev/tty9
+DEBUGTTY=/dev/tty9
AC_ARG_WITH([debugshelltty],
[AS_HELP_STRING([--with-debugshelltty=PATH],
[Specify the tty device for debug shell])],
- [debugshell="$withval"],
+ [DEBUGTTY="$withval"],
[])
-AC_SUBST(debugshell)
+AC_SUBST(DEBUGTTY)
# ------------------------------------------------------------------------------
have_manpages=no