From 4dd7439a8344d023398ecc17556ac61470fb16e4 Mon Sep 17 00:00:00 2001 From: Igor Ostapenko <9573190+ihoro@users.noreply.github.com> Date: Thu, 4 May 2023 06:19:25 +0300 Subject: [PATCH] Makefile: set bash COMPL_DIR to FreeBSD expected defaults (#1042) See official conventions: https://docs.freebsd.org/en/books/porters-handbook/special/#shell-completion --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index c243f48fe..1d80ea1cb 100644 --- a/Makefile +++ b/Makefile @@ -10,6 +10,8 @@ else endif ifeq ($(OS), Darwin) COMPL_DIR ?= "$(DESTDIR)$(SYSCONFDIR)/bash_completion.d" +else ifeq ($(OS), FreeBSD) + COMPL_DIR ?= "$(DESTDIR)$(SYSCONFDIR)/bash_completion.d" else COMPL_DIR ?= "$(DESTDIR)$(SYSCONFDIR)/bash-completion/completions" endif