summaryrefslogtreecommitdiffstats
path: root/meta-initramfs/recipes-devtools/grubby/grubby/grubby-remove-bashisms-in-test.sh.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta-initramfs/recipes-devtools/grubby/grubby/grubby-remove-bashisms-in-test.sh.patch')
-rw-r--r--meta-initramfs/recipes-devtools/grubby/grubby/grubby-remove-bashisms-in-test.sh.patch29
1 files changed, 29 insertions, 0 deletions
diff --git a/meta-initramfs/recipes-devtools/grubby/grubby/grubby-remove-bashisms-in-test.sh.patch b/meta-initramfs/recipes-devtools/grubby/grubby/grubby-remove-bashisms-in-test.sh.patch
new file mode 100644
index 000000000..6734e7f0f
--- /dev/null
+++ b/meta-initramfs/recipes-devtools/grubby/grubby/grubby-remove-bashisms-in-test.sh.patch
@@ -0,0 +1,29 @@
1From c3a004b8d6dff1a767573dd7baf5d45efddb9f2b Mon Sep 17 00:00:00 2001
2From: Mingli Yu <mingli.yu@windriver.com>
3Date: Fri, 15 Jul 2016 11:23:17 +0800
4Subject: [PATCH] grubby: remove bashisms in test.sh
5
6* Update #!/bin/bash to #!/bin/sh in test.sh to
7 remove below warning:
8 QA Issue: /usr/lib/grubby/ptest/test.sh contained
9 in package grubby-ptest requires /bin/bash, but no
10 providers found in RDEPENDS_grubby-ptest? [file-rdeps]
11
12Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
13---
14 test.sh | 2 +-
15 1 file changed, 1 insertion(+), 1 deletion(-)
16
17diff --git a/test.sh b/test.sh
18index f738388..f3537f3 100755
19--- a/test.sh
20+++ b/test.sh
21@@ -1,4 +1,4 @@
22-#!/bin/bash
23+#!/bin/sh
24 #
25 # test.sh -- grubby regression tests
26 #
27--
282.8.1
29