Don't sanitize away the nothreads support

This commit is contained in:
Brian Wellington 2000-11-22 23:28:27 +00:00
parent 0c0619cc19
commit a408d5b005

View file

@ -15,7 +15,7 @@
# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
# WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
# $Id: sanitize_all.sh,v 1.8 2000/10/12 21:52:00 mws Exp $
# $Id: sanitize_all.sh,v 1.9 2000/11/22 23:28:27 bwelling Exp $
PERL=perl5
@ -23,14 +23,13 @@ PERL=perl5
# sanitize all of the files in that tree.
find . -name '*.[ch]' | xargs $PERL util/sanitize.pl -kNOMINUM_PUBLIC \
-kISC_PLATFORM_USETHREADS -iNOMINUM_GNS $*
-iNOMINUM_GNS $*
find . -name '*.in' | xargs $PERL util/sanitize.pl -kNOMINUM_PUBLIC \
-kISC_PLATFORM_USETHREADS -iNOMINUM_GNS $*
-iNOMINUM_GNS $*
for file in `find . -name '*.dirty'`
do
clean=`echo $file | sed 's/\.dirty$//'`
$PERL util/sanitize.pl -kNOMINUM_PUBLIC -kISC_PLATFORM_USETHREADS \
- < $file > $clean
$PERL util/sanitize.pl -kNOMINUM_PUBLIC - < $file > $clean
rm $file
done