spec: define _bashcompletiondir if undefined
Always define _bashcompletiondir in the spec file to a reasonable value when it is undefined. Required for `rpmbuild --rebuild <srpm>`. Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov> Closes #15396
This commit is contained in:
parent
1b310dfb1d
commit
fd51286227
|
@ -19,6 +19,15 @@
|
|||
%endif
|
||||
%endif
|
||||
|
||||
# Set the default _bashcompletiondir directory based on distribution.
|
||||
%if %{undefined _bashcompletiondir}
|
||||
%if 0%{?rhel}%{?fedora}%{?centos}%{?suse_version}%{?openEuler}
|
||||
%global _bashcompletiondir /etc/bash_completion.d
|
||||
%else
|
||||
%global _bashcompletiondir /usr/share/bash-completion
|
||||
%endif
|
||||
%endif
|
||||
|
||||
# Set the default dracut directory based on distribution.
|
||||
%if %{undefined _dracutdir}
|
||||
%if 0%{?rhel}%{?fedora}%{?centos}%{?suse_version}%{?openEuler}
|
||||
|
|
Loading…
Reference in New Issue