Add verboseness to mpw sanitize, add lose-gdbtk for FSF releases

This commit is contained in:
Stan Shebs 1995-03-10 19:37:48 +00:00
parent 8cbf6efc61
commit fc5a05e946
1 changed files with 20 additions and 0 deletions

View File

@ -35,8 +35,28 @@ mpw_files="mpw-README mpw-configure mpw-config.in mpw-build.in ChangeLog.mpw"
if ( echo $* | grep keep\-mpw > /dev/null) ; then
keep_these_too="${keep_these_too} ${mpw_files}"
if [ -n "${verbose}" ] ; then
echo Keeping ${mpw_files}
fi
else
lose_these_too="${lose_these_too} ${mpw_files}"
if [ -n "${verbose}" ] ; then
echo Deleting ${mpw_files}
fi
fi
gdbtk_files="tcl tk"
if ( echo $* | grep lose\-gdbtk > /dev/null) ; then
lose_these_too="${lose_these_too} ${gdbtk_files}"
if [ -n "${verbose}" ] ; then
echo Deleting ${gdbtk_files}
fi
else
keep_these_too="${keep_these_too} ${gdbtk_files}"
if [ -n "${verbose}" ] ; then
echo Keeping ${gdbtk_files}
fi
fi
# This top-level directory is special. We often check out only subsets