aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGreg McGary <greg@mcgary.org>2000-07-08 07:12:48 +0000
committerGreg McGary <greg@mcgary.org>2000-07-08 07:12:48 +0000
commitf2c9942e975241ca685eeae5b58547d4d91336da (patch)
treef8d42b1d1afb594aacf5a280eef00df91cdad379
parent6ccf5e679ad89ce7d19585e721ce3ed1510483ae (diff)
downloadglibc-f2c9942e975241ca685eeae5b58547d4d91336da.tar
glibc-f2c9942e975241ca685eeae5b58547d4d91336da.tar.gz
glibc-f2c9942e975241ca685eeae5b58547d4d91336da.tar.bz2
glibc-f2c9942e975241ca685eeae5b58547d4d91336da.zip
* sysdeps/unix/make-syscalls.sh: Tolerate syscalls that
have no names without leading underscores. 2000-07-07 Greg McGary <greg@mcgary.org> * sysdeps/unix/make-syscalls.sh: Tolerate syscalls that have no names without leading underscores.
-rw-r--r--ChangeLog5
-rw-r--r--sysdeps/unix/make-syscalls.sh4
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index f79f4f2df2..4e22140f97 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2000-07-07 Greg McGary <greg@mcgary.org>
+
+ * sysdeps/unix/make-syscalls.sh: Tolerate syscalls that
+ have no names without leading underscores.
+
2000-07-07 Ulrich Drepper <drepper@redhat.com>
* iconvdata/sjis.c (from_ucs4_lat1): Fix mappng of U005C and
diff --git a/sysdeps/unix/make-syscalls.sh b/sysdeps/unix/make-syscalls.sh
index 0bedf7a432..61da42153e 100644
--- a/sysdeps/unix/make-syscalls.sh
+++ b/sysdeps/unix/make-syscalls.sh
@@ -193,8 +193,8 @@ shared-only-routines += $file
x-,-,* | x*,*.[sS],*V*) ;;
x*,-,*$ptrlet* | x*,*.[sS],*$ptrlet*)
- # find the name without leading underscores
- set `echo $strong $weak |tr -s ' \t' '\12' |sed '/^_/d'`
+ # choose the name with the fewest leading underscores, preferably none
+ set `echo $strong $weak |tr ' \t' '\n' |sort -r`
callname=$1
# convert signature string to individual numbered arg names