From: Didier Raboud Date: Thu, 3 Dec 2020 11:32:54 +0000 (+0100) Subject: SERVERBIN: match host_os_name on *-gnu first, to catch kfreebsd-gnu before *bsd* X-Git-Tag: v2.3.3op2~20^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e60241c29e229738bbf144d33fa33ae6d775f2ed;p=thirdparty%2Fcups.git SERVERBIN: match host_os_name on *-gnu first, to catch kfreebsd-gnu before *bsd* Debian's kfreebsd-gnu architectures (kfreebsd-amd64 and kfreebsd-i386) work as Debian/GNU systems, hence with a /usr/lib/cups SERVERBIN, not a /usr/libexec/cups. --- diff --git a/config-scripts/cups-directories.m4 b/config-scripts/cups-directories.m4 index b74083ac28..1430af3a66 100644 --- a/config-scripts/cups-directories.m4 +++ b/config-scripts/cups-directories.m4 @@ -262,6 +262,11 @@ AC_SUBST(CUPS_REQUESTS) # Server executables... case "$host_os_name" in + *-gnu) + # GNUs + INSTALL_SYSV="install-sysv" + CUPS_SERVERBIN="$exec_prefix/lib/cups" + ;; *bsd* | darwin*) # *BSD and Darwin (macOS) INSTALL_SYSV=""