diff --git a/ChangeLog b/ChangeLog index f15ec5faf..86b888fbf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2001-05-18 Pavel Roskin + * create_vcs: Remove. + * INSTALL: Update download locations for MC, rxvt, gpm, ncurses. Add download location for glib. * mc.spec.in: Likewise. diff --git a/create_vcs b/create_vcs deleted file mode 100755 index 389216f56..000000000 --- a/create_vcs +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/sh -# -# Script by Jakub Jelinek -# -if test -e /dev/vcs0 -then - exit -fi - -I=0 -while [ $I -lt 64 ] -do - mknod /dev/vcs$I c 7 $I - chmod 622 /dev/vcs$I - chown root.tty /dev/vcs$I - mknod /dev/vcsa$I c 7 `expr $I + 128` - chmod 622 /dev/vcsa$I - chown root.tty /dev/vcsa$I - I=`expr $I + 1` -done