Author: branden Date: 2003-08-19 22:27:04 -0500 (Tue, 19 Aug 2003) New Revision: 411
Modified: trunk/debian/xserver-xfree86.postinst.in Log: debian/xserver-xfree86.postinst.in: *sigh* still more fixes for my own stupidity; the command is called "md5sum", not "m5sum"; hello, fumble fingers Modified: trunk/debian/xserver-xfree86.postinst.in =================================================================== --- trunk/debian/xserver-xfree86.postinst.in 2003-08-20 02:57:05 UTC (rev 410) +++ trunk/debian/xserver-xfree86.postinst.in 2003-08-20 03:27:04 UTC (rev 411) @@ -44,7 +44,7 @@ if [ -e "$SERVER_SYMLINK_CHECKSUM" ]; then # compare the current and stored checksums; if they do not match, assume # that's the way the user wants it - CURRENT_MD5SUM=$(readlink "$SERVER_SYMLINK" | m5sum) + CURRENT_MD5SUM=$(readlink "$SERVER_SYMLINK" | md5sum) if [ "$CURRENT_MD5SUM" = "$(cat "$SERVER_SYMLINK_CHECKSUM")" ]; then # finally, only update the symlink if this package contains the selected # default X server @@ -62,7 +62,7 @@ != "$(readlink "$NEW_SERVER_SYMLINK")" ]; then if [ ! -d "$SERVER_SYMLINK" ]; then mv "$NEW_SERVER_SYMLINK" "$SERVER_SYMLINK" - readlink "$SERVER_SYMLINK" | m5sum > "$SERVER_SYMLINK_CHECKSUM" + readlink "$SERVER_SYMLINK" | md5sum > "$SERVER_SYMLINK_CHECKSUM" else message "Note: not updating $SERVER_SYMLINK; it is a symbolic" \ "link to a directory." -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]