From: Didier Raboud Date: Thu, 3 Dec 2020 17:33:35 +0000 (+0100) Subject: CUPS_EXE_FILE_PERM: also match host_os_name on *-gnu, to also catch kfreebsd-gnu X-Git-Tag: v2.3.3op2~17^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F61%2Fhead;p=thirdparty%2Fcups.git CUPS_EXE_FILE_PERM: also match host_os_name on *-gnu, to also catch kfreebsd-gnu Debian's kfreebsd-gnu architectures (kfreebsd-amd64 and kfreebsd-i386) work as Debian/GNU systems, hence with a 755 CUP_EXE_FILE_PERM, not 555 --- diff --git a/config-scripts/cups-defaults.m4 b/config-scripts/cups-defaults.m4 index 7a2d35a860..9e05bd4771 100644 --- a/config-scripts/cups-defaults.m4 +++ b/config-scripts/cups-defaults.m4 @@ -53,7 +53,7 @@ dnl Default executable file permissions AC_ARG_WITH(exe_file_perm, [ --with-exe-file-perm set default executable permissions value, default=0555], CUPS_EXE_FILE_PERM="$withval", [case "$host_os_name" in - linux* | gnu*) + linux* | gnu* | *-gnu) CUPS_EXE_FILE_PERM="755" ;; *)