1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-09-02 16:01:20 +03:00
* tst-cancel-wrappers.sh: Invoke gawk not awk since we use GNU awk
	features.  Reported by Marijn Ros <marijn@mad.scientist.com>.
This commit is contained in:
Ulrich Drepper
2003-01-05 20:10:01 +00:00
parent c97c64de01
commit a73ab6df85
5 changed files with 13 additions and 6 deletions

View File

@@ -10,6 +10,9 @@
2003-01-05 Ulrich Drepper <drepper@redhat.com>
* tst-cancel-wrappers.sh: Invoke gawk not awk since we use GNU awk
features. Reported by Marijn Ros <marijn@mad.scientist.com>.
* Makefile (libc.so-no-z-defs): Define to yes.
2003-01-05 Kaz Kojima <kkojima@rr.iij4u.or.jp>

View File

@@ -1,5 +1,5 @@
#! /bin/sh
# Test whether all cancellable functions are cancellable.
# Test whether all cancelable functions are cancelable.
# Copyright (C) 2002, 2003 Free Software Foundation, Inc.
# This file is part of the GNU C Library.
# Contributed by Jakub Jelinek <jakub@redhat.com>, 2002.
@@ -20,7 +20,7 @@
# 02111-1307 USA.
while [ $# -gt 0 ]; do
( nm -P $1; echo 'end[end]:' ) | awk ' BEGIN {
( nm -P $1; echo 'end[end]:' ) | gawk ' BEGIN {
C["accept"]=1
C["close"]=1
C["connect"]=1