Keep new files, modulo m32r.
This commit is contained in:
parent
7d2759fc5b
commit
1d3d059535
1 changed files with 41 additions and 0 deletions
|
@ -102,6 +102,20 @@ else
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
m32r_files="m32r-tdep.c m32r-rom.c"
|
||||||
|
|
||||||
|
if ( echo $* | grep keep\-m32r > /dev/null ) ; then
|
||||||
|
keep_these_too="${m32r_files} ${keep_these_too}"
|
||||||
|
if [ -n "${verbose}" ] ; then
|
||||||
|
echo Keeping ${m32r_files}
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
lose_these_too="${m32r_files} ${lose_these_too}"
|
||||||
|
if [ -n "${verbose}" ] ; then
|
||||||
|
echo Deleting ${m32r_files}
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
# All files listed between the "Things-to-keep:" line and the
|
# All files listed between the "Things-to-keep:" line and the
|
||||||
# "Files-to-sed:" line will be kept. All other files will be removed.
|
# "Files-to-sed:" line will be kept. All other files will be removed.
|
||||||
# Directories listed in this section will have their own Sanitize
|
# Directories listed in this section will have their own Sanitize
|
||||||
|
@ -586,6 +600,33 @@ else
|
||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if ( echo $* | grep keep\-m32r > /dev/null ) ; then
|
||||||
|
for i in * ; do
|
||||||
|
if test ! -d $i && (grep sanitize-m32r $i > /dev/null) ; then
|
||||||
|
if [ -n "${verbose}" ] ; then
|
||||||
|
echo Keeping m32r stuff in $i
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
else
|
||||||
|
for i in * ; do
|
||||||
|
if test ! -d $i && (grep sanitize-m32r $i > /dev/null) ; then
|
||||||
|
if [ -n "${verbose}" ] ; then
|
||||||
|
echo Removing traces of \"m32r\" from $i...
|
||||||
|
fi
|
||||||
|
cp $i new
|
||||||
|
sed '/start\-sanitize\-m32r/,/end-\sanitize\-m32r/d' < $i > new
|
||||||
|
if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
|
||||||
|
if [ -n "${verbose}" ] ; then
|
||||||
|
echo Caching $i in .Recover...
|
||||||
|
fi
|
||||||
|
mv $i .Recover
|
||||||
|
fi
|
||||||
|
mv new $i
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
fi
|
||||||
|
|
||||||
for i in * ; do
|
for i in * ; do
|
||||||
if test ! -d $i && (grep sanitize $i > /dev/null) ; then
|
if test ! -d $i && (grep sanitize $i > /dev/null) ; then
|
||||||
echo '***' Some mentions of Sanitize are still left in $i! 1>&2
|
echo '***' Some mentions of Sanitize are still left in $i! 1>&2
|
||||||
|
|
Loading…
Reference in a new issue