Blame 0061-dracut-functions.sh-inst_rule_programs-fix-error-mes.patch

Harald Hoyer 12f6cc
From cc2180876488b6e2b49c36317a593cb10e9124a7 Mon Sep 17 00:00:00 2001
Harald Hoyer 12f6cc
From: Harald Hoyer <harald@redhat.com>
Harald Hoyer 12f6cc
Date: Thu, 26 Jul 2012 19:35:12 +0200
Harald Hoyer 12f6cc
Subject: [PATCH] dracut-functions.sh:inst_rule_programs() fix error messages
Harald Hoyer 12f6cc
Harald Hoyer 12f6cc
---
Harald Hoyer 12f6cc
 dracut-functions.sh | 6 +++---
Harald Hoyer 12f6cc
 1 file changed, 3 insertions(+), 3 deletions(-)
Harald Hoyer 12f6cc
Harald Hoyer 12f6cc
diff --git a/dracut-functions.sh b/dracut-functions.sh
Harald Hoyer 12f6cc
index 49051fa..9242204 100755
Harald Hoyer 12f6cc
--- a/dracut-functions.sh
Harald Hoyer 12f6cc
+++ b/dracut-functions.sh
Harald Hoyer 12f6cc
@@ -757,7 +757,7 @@ inst_rule_programs() {
Harald Hoyer 12f6cc
                 _bin=${udevdir}/$_prog
Harald Hoyer 12f6cc
             else
Harald Hoyer 12f6cc
                 _bin=$(find_binary "$_prog") || {
Harald Hoyer 12f6cc
-                    dinfo "Skipping program $_prog using in udev rule $(${1##*/}) as it cannot be found"
Harald Hoyer 12f6cc
+                    dinfo "Skipping program $_prog using in udev rule ${1##*/} as it cannot be found"
Harald Hoyer 12f6cc
                     continue;
Harald Hoyer 12f6cc
                 }
Harald Hoyer 12f6cc
             fi
Harald Hoyer 12f6cc
@@ -772,7 +772,7 @@ inst_rule_programs() {
Harald Hoyer 12f6cc
                 _bin=${udevdir}/$_prog
Harald Hoyer 12f6cc
             else
Harald Hoyer 12f6cc
                 _bin=$(find_binary "$_prog") || {
Harald Hoyer 12f6cc
-                    dinfo "Skipping program $_prog using in udev rule $(${1##*/}) as it cannot be found"
Harald Hoyer 12f6cc
+                    dinfo "Skipping program $_prog using in udev rule ${1##*/} as it cannot be found"
Harald Hoyer 12f6cc
                     continue;
Harald Hoyer 12f6cc
                 }
Harald Hoyer 12f6cc
             fi
Harald Hoyer 12f6cc
@@ -787,7 +787,7 @@ inst_rule_programs() {
Harald Hoyer 12f6cc
                 _bin=${udevdir}/$_prog
Harald Hoyer 12f6cc
             else
Harald Hoyer 12f6cc
                 _bin=$(find_binary "$_prog") || {
Harald Hoyer 12f6cc
-                    dinfo "Skipping program $_prog using in udev rule $(${1##*/}) as it cannot be found"
Harald Hoyer 12f6cc
+                    dinfo "Skipping program $_prog using in udev rule ${1##*/} as it cannot be found"
Harald Hoyer 12f6cc
                     continue;
Harald Hoyer 12f6cc
                 }
Harald Hoyer 12f6cc
             fi