Skip to content

Commit 70a8718

Browse files
committed
completion/bash: add completion rules for ctags
Close #1168. The changes for Makefile.am and configure.ac are derrived from util-linux. Their licenses are covered withn "The ./COPYING file (GPL-2.0-or-later)". Quoted from README.licensing: The project util-linux doesn't use the same license for all of the code. There is code under: * GPL-3.0-or-later - GNU General Public License version 3, or any later version * GPL-2.0-or-later - GNU General Public License version 2, or any later version * GPL-2.0 - GNU General Public License version 2 * LGPL-2.1-or-later - GNU Lesser General Public License 2.1 or any later version * BSD-3-Clause - BSD 3-Clause "New" or "Revised" License * BSD-4-Clause-UC - BSD 4-Clause University of California-Specific * Public Domain Please, check the source code for more details. A license is usually at the start of each source file. The ./COPYING file (GPL-2.0-or-later) is the default license for code without an explicitly defined license.
1 parent 8334234 commit 70a8718

File tree

3 files changed

+889
-0
lines changed

3 files changed

+889
-0
lines changed

Makefile.am

+6
Original file line numberDiff line numberDiff line change
@@ -278,3 +278,9 @@ dist-hook:
278278
include $(top_srcdir)/makefiles/testing.mak
279279

280280
include $(top_srcdir)/makefiles/help.mak
281+
282+
bashcompletiondir = @bashcompletiondir@
283+
if BASH_COMPLETION
284+
dist_bashcompletion_DATA =
285+
dist_bashcompletion_DATA += completion/ctags.bash
286+
endif

0 commit comments

Comments
 (0)