From e293aa9cfca0619a63616af75532637dab60d49d Mon Sep 17 00:00:00 2001 From: Dave Reisner Date: Fri, 2 Aug 2019 18:45:19 -0400 Subject: [PATCH] Honor --sbindir and --bindir for binary installation Some distros don't care about the split between /bin, /sbin, /usr/bin, and /usr/sbin, so let them easily stuff binaries wherever they want. --- src/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Makefile.am b/src/Makefile.am index a8c29c91..f7f132ee 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -2,8 +2,8 @@ EXTRA_DIST = \ .indent.pro -ubindir = ${prefix}/bin -usbindir = ${prefix}/sbin +ubindir = ${bindir} +usbindir = ${sbindir} suidperms = 4755 sgidperms = 2755