Fix wrongly installed mdb-sql completion script

Gate it behind the same conditional that the `mdb-sql` program is gated
behind.
This commit is contained in:
Dan Church 2022-08-24 15:56:00 -05:00
parent ab5beff0fa
commit ff544c0b76
No known key found for this signature in database
GPG Key ID: EA2BF379CD2CDBD0

View File

@ -1,4 +1,7 @@
if ENABLE_BASH_COMPLETION
bashcompletiondir = $(BASH_COMPLETION_DIR)
dist_bashcompletion_DATA = mdb-count mdb-export mdb-hexdump mdb-import mdb-json mdb-parsecsv mdb-prop mdb-queries mdb-schema mdb-sql mdb-tables mdb-ver
dist_bashcompletion_DATA = mdb-count mdb-export mdb-hexdump mdb-import mdb-json mdb-parsecsv mdb-prop mdb-queries mdb-schema mdb-tables mdb-ver
if SQL
dist_bashcompletion_DATA += mdb-sql
endif
endif