From 134d057955a31b25b5cbf73904054dae1b198e99 Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Fri, 16 Jun 2017 21:11:42 -0400 Subject: [PATCH] Fix some typos. --- config-scripts/cups-defaults.m4 | 12 ++++++------ configure | 16 ++++++++-------- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/config-scripts/cups-defaults.m4 b/config-scripts/cups-defaults.m4 index 22c193884..9fd99689b 100644 --- a/config-scripts/cups-defaults.m4 +++ b/config-scripts/cups-defaults.m4 @@ -40,38 +40,38 @@ fi dnl Default executable file permissions AC_ARG_WITH(exe_file_perm, [ --with-exe-file-perm set default exectuable permissions value, default=0555], CUPS_EXE_FILE_PERM="$withval", - case "$host_os_name" in + [case "$host_os_name" in linux* | gnu*) CUPS_EXE_FILE_PERM="755" ;; *) CUPS_EXE_FILE_PERM="555" ;; - esac) + esac]) AC_SUBST(CUPS_EXE_FILE_PERM) dnl Default ConfigFilePerm AC_ARG_WITH(config_file_perm, [ --with-config-file-perm set default ConfigFilePerm value, default=0640], CUPS_CONFIG_FILE_PERM="$withval", - if test "x$host_os_name" = xdarwin; then + [if test "x$host_os_name" = xdarwin; then CUPS_CONFIG_FILE_PERM="644" else CUPS_CONFIG_FILE_PERM="640" - fi) + fi]) AC_SUBST(CUPS_CONFIG_FILE_PERM) AC_DEFINE_UNQUOTED(CUPS_DEFAULT_CONFIG_FILE_PERM, 0$CUPS_CONFIG_FILE_PERM) dnl Default permissions for cupsd AC_ARG_WITH(cupsd_file_perm, [ --with-cupsd-file-perm set default cupsd permissions, default=0500], CUPS_CUPSD_FILE_PERM="$withval", - case "$host_os_name" in + [case "$host_os_name" in linux* | gnu*) CUPS_CUPSD_FILE_PERM="700" ;; *) CUPS_CUPSD_FILE_PERM="500" ;; - esac) + esac]) AC_SUBST(CUPS_CUPSD_FILE_PERM) dnl Default LogFilePerm diff --git a/configure b/configure index 4800e782d..68ea115ce 100755 --- a/configure +++ b/configure @@ -9521,15 +9521,15 @@ if test "${with_exe_file_perm+set}" = set; then : withval=$with_exe_file_perm; CUPS_EXE_FILE_PERM="$withval" else case "$host_os_name" in - linux* | gnu* -fi - + linux* | gnu*) CUPS_EXE_FILE_PERM="755" ;; *) CUPS_EXE_FILE_PERM="555" ;; - esac) + esac +fi + @@ -9556,15 +9556,15 @@ if test "${with_cupsd_file_perm+set}" = set; then : withval=$with_cupsd_file_perm; CUPS_CUPSD_FILE_PERM="$withval" else case "$host_os_name" in - linux* | gnu* -fi - + linux* | gnu*) CUPS_CUPSD_FILE_PERM="700" ;; *) CUPS_CUPSD_FILE_PERM="500" ;; - esac) + esac +fi + -- 2.39.2