]> git.ipfire.org Git - thirdparty/cups.git/commitdiff
SERVERBIN: match host_os_name on *-gnu first, to catch kfreebsd-gnu before *bsd* 60/head
authorDidier Raboud <odyx@debian.org>
Thu, 3 Dec 2020 11:32:54 +0000 (12:32 +0100)
committerDidier Raboud <odyx@debian.org>
Thu, 3 Dec 2020 11:48:15 +0000 (12:48 +0100)
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.

config-scripts/cups-directories.m4

index b74083ac2861f58c63b0be94041226e975c8179f..1430af3a661fe45a9b482a39effaddf2fc36ab0c 100644 (file)
@@ -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=""