#!/bin/sh
# $Id: manifake,v 4.4 1991/09/09 20:23:31 sob Exp sob $
#
# $Log: manifake,v $
# Revision 4.4  1991/09/09  20:23:31  sob
# release 4.4
#
#
# 

: make MANIFEST and MANIFEST.new say the same thing
if test ! -f MANIFEST.new; then
    if test -f MANIFEST; then
	sed <MANIFEST >MANIFEST.new \
	    -e '1,/---/d' \
	    -e 's/\([ 	][ 	]*\)[0-9]*  */\1/'
    else
	echo "Make a MANIFEST.new file, with names and descriptions."
    fi
fi
