mirror of
https://github.com/isc-projects/bind9.git
synced 2026-03-09 01:30:39 -04:00
Don't sanitize away the nothreads support
This commit is contained in:
parent
0c0619cc19
commit
a408d5b005
1 changed files with 4 additions and 5 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue