aboutsummaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorluis <luis@370017ae-e619-0410-ac65-c121f96126d4>2007-03-17 03:09:08 +0000
committerluis <luis@370017ae-e619-0410-ac65-c121f96126d4>2007-03-17 03:09:08 +0000
commitc20272580f6a2ab2f1c9aac1fc94a453bf90e715 (patch)
tree1d1773833b059b1bcb0f3ec29eb078812fb174d6 /sys
parent593ca74dede91403d14237473e10333fafad8303 (diff)
downloadslackbuilds-c20272580f6a2ab2f1c9aac1fc94a453bf90e715.tar.gz
slackbuilds-c20272580f6a2ab2f1c9aac1fc94a453bf90e715.tar.bz2
fixing a few details
git-svn-id: svn+slack://slack.fluxo.info/var/svn/slackbuilds@1108 370017ae-e619-0410-ac65-c121f96126d4
Diffstat (limited to 'sys')
-rwxr-xr-xsys/apps/microcode_ctl/microcode_ctl.SlackBuild4
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...