From: John Reiser Date: Fri, 19 Aug 2011 03:55:35 +0000 (-0700) Subject: build initramfs: prelink --undo /sbin/* X-Git-Tag: 014~132 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=bc313467bdb49605aaddfec67823cab72396c29b;p=thirdparty%2Fdracut.git build initramfs: prelink --undo /sbin/* Fix a typo (omitting the 's' in "sbin") which caused "prelink --undo" twice on /bin/*, and "prelink --undo" omitted for /sbin/*. --- diff --git a/dracut b/dracut index dfa71a1da..fd36805b7 100755 --- a/dracut +++ b/dracut @@ -643,7 +643,7 @@ type hardlink &>/dev/null && { if strstr "$modules_loaded" " fips " && command -v prelink >/dev/null; then for i in $initdir/bin/* \ - $initdir/bin/* \ + $initdir/sbin/* \ $initdir/usr/bin/* \ $initdir/usr/sbin/*; do [ -x $i ] && prelink -u $i &>/dev/null