]> granicus.if.org Git - sudo/commitdiff
use AC_DEFINE_UNQUOTED for --with-logfile and --with-timedir
authorTodd C. Miller <Todd.Miller@courtesan.com>
Thu, 10 Sep 1998 22:32:57 +0000 (22:32 +0000)
committerTodd C. Miller <Todd.Miller@courtesan.com>
Thu, 10 Sep 1998 22:32:57 +0000 (22:32 +0000)
aclocal.m4

index d4dc3eb7033083dce60e89c8d98538aa285467f5..02177d0d57828652edfa37e188c277a0e8523915 100644 (file)
@@ -135,7 +135,7 @@ dnl
 AC_DEFUN(SUDO_LOGFILE, [AC_MSG_CHECKING(for log file location)
 if test -n "$with_logfile"; then
     AC_MSG_RESULT($with_logfile)
-    AC_DEFINE(_CONFIG_PATH_LOGFILE, "$with_logfile")
+    AC_DEFINE_UNQUOTED(_CONFIG_PATH_LOGFILE, "$with_logfile")
 elif test -d "/var/log"; then
     AC_MSG_RESULT(/var/log/sudo.log)
     AC_DEFINE(_CONFIG_PATH_LOGFILE, "/var/log/sudo.log")
@@ -156,7 +156,7 @@ dnl
 AC_DEFUN(SUDO_TIMEDIR, [AC_MSG_CHECKING(for timestamp file location)
 if test -n "$with_timedir"; then
     AC_MSG_RESULT($with_timedir)
-    AC_DEFINE(_CONFIG_PATH_TIMEDIR, "$with_timedir")
+    AC_DEFINE_UNQUOTED(_CONFIG_PATH_TIMEDIR, "$with_timedir")
 elif test -d "/var/run"; then
     AC_MSG_RESULT(/var/run/sudo)
     AC_DEFINE(_CONFIG_PATH_TIMEDIR, "/var/run/sudo")