2018-04-11 18:42:03 +00:00
|
|
|
From 8eaf2f497a6bcffc5554509533940ac2b764b981 Mon Sep 17 00:00:00 2001
|
2016-04-05 19:28:47 +00:00
|
|
|
From: Peter Jones <pjones@redhat.com>
|
|
|
|
Date: Wed, 3 Apr 2013 14:35:34 -0400
|
2018-04-24 14:41:42 +00:00
|
|
|
Subject: [PATCH 069/236] Move bash completion script (#922997)
|
2016-04-05 19:28:47 +00:00
|
|
|
|
|
|
|
Apparently these go in a new place now.
|
|
|
|
---
|
|
|
|
configure.ac | 11 +++++++++++
|
|
|
|
util/bash-completion.d/Makefile.am | 1 -
|
|
|
|
2 files changed, 11 insertions(+), 1 deletion(-)
|
|
|
|
|
|
|
|
diff --git a/configure.ac b/configure.ac
|
2018-02-27 18:56:41 +00:00
|
|
|
index 571f7a0b5aa..9ae97f026ab 100644
|
2016-04-05 19:28:47 +00:00
|
|
|
--- a/configure.ac
|
|
|
|
+++ b/configure.ac
|
2018-01-17 22:04:09 +00:00
|
|
|
@@ -288,6 +288,14 @@ AC_SUBST(grubdirname)
|
2016-04-05 19:28:47 +00:00
|
|
|
AC_DEFINE_UNQUOTED(GRUB_DIR_NAME, "$grubdirname",
|
|
|
|
[Default grub directory name])
|
|
|
|
|
|
|
|
+PKG_PROG_PKG_CONFIG
|
|
|
|
+AS_IF([$($PKG_CONFIG --exists bash-completion)], [
|
|
|
|
+ bashcompletiondir=$($PKG_CONFIG --variable=completionsdir bash-completion)
|
|
|
|
+] , [
|
|
|
|
+ bashcompletiondir=${datadir}/bash-completion/completions
|
|
|
|
+])
|
|
|
|
+AC_SUBST(bashcompletiondir)
|
|
|
|
+
|
|
|
|
#
|
|
|
|
# Checks for build programs.
|
|
|
|
#
|
2018-01-17 22:04:09 +00:00
|
|
|
@@ -497,6 +505,9 @@ HOST_CFLAGS="$HOST_CFLAGS $grub_cv_cc_w_extra_flags"
|
2016-04-05 19:28:47 +00:00
|
|
|
# Check for target programs.
|
|
|
|
#
|
|
|
|
|
|
|
|
+# This makes sure pkg.m4 is available.
|
|
|
|
+m4_pattern_forbid([^_?PKG_[A-Z_]+$],[*** pkg.m4 missing, please install pkg-config])
|
|
|
|
+
|
|
|
|
# Find tools for the target.
|
|
|
|
if test "x$target_alias" != x && test "x$host_alias" != "x$target_alias"; then
|
|
|
|
tmp_ac_tool_prefix="$ac_tool_prefix"
|
|
|
|
diff --git a/util/bash-completion.d/Makefile.am b/util/bash-completion.d/Makefile.am
|
2018-02-27 18:56:41 +00:00
|
|
|
index 136287cf1bf..61108f05429 100644
|
2016-04-05 19:28:47 +00:00
|
|
|
--- a/util/bash-completion.d/Makefile.am
|
|
|
|
+++ b/util/bash-completion.d/Makefile.am
|
|
|
|
@@ -6,7 +6,6 @@ EXTRA_DIST = $(bash_completion_source)
|
|
|
|
|
|
|
|
CLEANFILES = $(bash_completion_script) config.log
|
|
|
|
|
|
|
|
-bashcompletiondir = $(sysconfdir)/bash_completion.d
|
|
|
|
bashcompletion_DATA = $(bash_completion_script)
|
|
|
|
|
|
|
|
$(bash_completion_script): $(bash_completion_source) $(top_builddir)/config.status
|
|
|
|
--
|
2018-02-27 18:56:41 +00:00
|
|
|
2.15.0
|
2016-04-05 19:28:47 +00:00
|
|
|
|