diff options
Diffstat (limited to 'sys')
-rwxr-xr-x | sys/apps/microcode_ctl/microcode_ctl.SlackBuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/apps/microcode_ctl/microcode_ctl.SlackBuild b/sys/apps/microcode_ctl/microcode_ctl.SlackBuild index dac34a07..19698f93 100755 --- a/sys/apps/microcode_ctl/microcode_ctl.SlackBuild +++ b/sys/apps/microcode_ctl/microcode_ctl.SlackBuild @@ -133,11 +133,11 @@ cat << EOSCRIPT > "$PKG/install/doinst.sh" config() { NEW="\$1" OLD="\$(dirname \$NEW)/\$(basename \$NEW .new)" - # If there's no config file by that name, mv it over + # If there's no config file by that name, mv it over: if [ ! -r \$OLD ]; then mv \$NEW \$OLD elif [ "\$(cat \$OLD | md5sum)" = "\$(cat \$NEW | md5sum)" ]; then - # Toss the redundant copy + # toss the redundant copy rm \$NEW fi # Otherwise, we leave the .new copy for the admin to consider... |