From 27777c072ba40e676733f823aab0d425546a69fa Mon Sep 17 00:00:00 2001 From: Didier Raboud Date: Thu, 3 Dec 2020 18:33:35 +0100 Subject: [PATCH] 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 --- config-scripts/cups-defaults.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" ;; *)