From a408d5b005efbdb85b4ce880c3abe09653aee8b8 Mon Sep 17 00:00:00 2001 From: Brian Wellington Date: Wed, 22 Nov 2000 23:28:27 +0000 Subject: [PATCH] Don't sanitize away the nothreads support --- util/sanitize_all.sh | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/util/sanitize_all.sh b/util/sanitize_all.sh index 566a90570c..1f4a32feb3 100755 --- a/util/sanitize_all.sh +++ b/util/sanitize_all.sh @@ -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