Browse Source

dracut-functions.sh:inst_rule_programs() fix error messages

master
Harald Hoyer 13 years ago
parent
commit
cc21808764
  1. 6
      dracut-functions.sh

6
dracut-functions.sh

@ -757,7 +757,7 @@ inst_rule_programs() { @@ -757,7 +757,7 @@ inst_rule_programs() {
_bin=${udevdir}/$_prog
else
_bin=$(find_binary "$_prog") || {
dinfo "Skipping program $_prog using in udev rule $(${1##*/}) as it cannot be found"
dinfo "Skipping program $_prog using in udev rule ${1##*/} as it cannot be found"
continue;
}
fi
@ -772,7 +772,7 @@ inst_rule_programs() { @@ -772,7 +772,7 @@ inst_rule_programs() {
_bin=${udevdir}/$_prog
else
_bin=$(find_binary "$_prog") || {
dinfo "Skipping program $_prog using in udev rule $(${1##*/}) as it cannot be found"
dinfo "Skipping program $_prog using in udev rule ${1##*/} as it cannot be found"
continue;
}
fi
@ -787,7 +787,7 @@ inst_rule_programs() { @@ -787,7 +787,7 @@ inst_rule_programs() {
_bin=${udevdir}/$_prog
else
_bin=$(find_binary "$_prog") || {
dinfo "Skipping program $_prog using in udev rule $(${1##*/}) as it cannot be found"
dinfo "Skipping program $_prog using in udev rule ${1##*/} as it cannot be found"
continue;
}
fi

Loading…
Cancel
Save