]> git.ipfire.org Git - thirdparty/cups.git/commitdiff
CUPS_EXE_FILE_PERM: also match host_os_name on *-gnu, to also catch kfreebsd-gnu 61/head
authorDidier Raboud <odyx@debian.org>
Thu, 3 Dec 2020 17:33:35 +0000 (18:33 +0100)
committerDidier Raboud <odyx@debian.org>
Thu, 3 Dec 2020 17:34:03 +0000 (18:34 +0100)
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

index 7a2d35a8601b871a033af95ff431571ac6260aa8..9e05bd4771e3b246ef04fb2a3a3548e69a43c879 100644 (file)
@@ -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"
                        ;;
                *)