Gentoo Archives: gentoo-commits

From: "Amadeusz Zolnowski (aidecoe)" <aidecoe@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-kernel/dracut/files: 036-0007-Added-missing-quotes.patch
Date: Sun, 23 Feb 2014 17:07:45
Message-Id: 20140223170741.6DAC62004C@flycatcher.gentoo.org
1 aidecoe 14/02/23 17:07:41
2
3 Added: 036-0007-Added-missing-quotes.patch
4 Log:
5 Fixed bug #502064 and bug #501566.
6
7 Commit on behalf of Alexander Tsoy <alexander@××××.me>.
8
9 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key F0134531E1DBFAB5)
10
11 Revision Changes Path
12 1.1 sys-kernel/dracut/files/036-0007-Added-missing-quotes.patch
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/dracut/files/036-0007-Added-missing-quotes.patch?rev=1.1&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/dracut/files/036-0007-Added-missing-quotes.patch?rev=1.1&content-type=text/plain
16
17 Index: 036-0007-Added-missing-quotes.patch
18 ===================================================================
19 From 13294581f82c2e51754ba3dacd7ec304350244c0 Mon Sep 17 00:00:00 2001
20 From: =?UTF-8?q?Amadeusz=20=C5=BBo=C5=82nowski?= <aidecoe@×××××××.name>
21 Date: Sun, 23 Feb 2014 17:43:57 +0100
22 Subject: [PATCH 7/7] Added missing quotes
23
24 See bug report at https://bugs.gentoo.org/show_bug.cgi?id=502064
25 ---
26 dracut.sh | 2 +-
27 1 file changed, 1 insertion(+), 1 deletion(-)
28
29 diff --git a/dracut.sh b/dracut.sh
30 index d693d58..5508050 100755
31 --- a/dracut.sh
32 +++ b/dracut.sh
33 @@ -554,7 +554,7 @@ done
34 # the old fashioned way
35
36 while (($# > 0)); do
37 - if [ ${1%%=*} == "++include" ]; then
38 + if [ "${1%%=*}" == "++include" ]; then
39 push include_src "$2"
40 push include_target "$3"
41 PARMS_TO_STORE+=" --include '$2' '$3'"
42 --
43 1.9.0