diff options
author | Roland McGrath <roland@gnu.org> | 1999-01-21 23:25:25 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1999-01-21 23:25:25 +0000 |
commit | 75d0cab2dd41c781c27c50f5332f308d3f076df1 (patch) | |
tree | faf48ddd7ea14e66b0f5dd0498bc99959011c103 /sysdeps/mach/hurd/Makefile | |
parent | aef211b5e786d6b5645f34a6bcdbe098c10255c2 (diff) | |
download | glibc-75d0cab2dd41c781c27c50f5332f308d3f076df1.tar.gz glibc-75d0cab2dd41c781c27c50f5332f308d3f076df1.tar.xz glibc-75d0cab2dd41c781c27c50f5332f308d3f076df1.zip |
1999-01-22 Roland McGrath <roland@baalperazim.frob.com>
* sysdeps/mach/hurd/Makefile: Fix errnos.h -> bits/errno.h in rules. * manual/errno.texi (Error Codes): Fix ENOSYS description. Add ENOTSUP.
Diffstat (limited to 'sysdeps/mach/hurd/Makefile')
-rw-r--r-- | sysdeps/mach/hurd/Makefile | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sysdeps/mach/hurd/Makefile b/sysdeps/mach/hurd/Makefile index c88110ea1d..14cc102e00 100644 --- a/sysdeps/mach/hurd/Makefile +++ b/sysdeps/mach/hurd/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1993, 94, 95, 96, 97, 98 Free Software Foundation, Inc. +# Copyright (C) 1993, 94, 95, 96, 97, 98, 99 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or @@ -58,7 +58,7 @@ $(common-objpfx)hurd/../mach/RPC_task_get_sampled_pcs.c: endif -# Generate errnos.h from the section of the manual that lists all the errno +# Generate bits/errno.h from the section of the manual that lists all the errno # codes. errno.texinfo = $(..)manual/errno.texi @@ -85,16 +85,16 @@ $(common-objpfx)errnos.d: $(mach-errnos-deps) -e 's,\.\./,$(..),g' > $@t mv -f $@t $@ -$(hurd)/errnos.h: $(common-objpfx)stamp-errnos ; +$(hurd)/bits/errno.h: $(common-objpfx)stamp-errnos ; $(common-objpfx)stamp-errnos: $(hurd)/errnos.awk $(errno.texinfo) \ $(mach-errnos-deps) - $(AWK) -f $^ > $(hurd)/errnos.h-tmp + $(AWK) -f $^ > $(hurd)/bits/errno.h-tmp # Make it unwritable so noone will edit it by mistake. - -chmod a-w $(hurd)/errnos.h-tmp - $(move-if-change) $(hurd)/errnos.h-tmp $(hurd)/errnos.h + -chmod a-w $(hurd)/bits/errno.h-tmp + $(move-if-change) $(hurd)/bits/errno.h-tmp $(hurd)/bits/errno.h ifeq ($(with-cvs),yes) test ! -d $(hurd)/CVS || \ - (cd $(hurd) && cvs commit -m'Regenerated from $^' errnos.h) + (cd $(hurd) && cvs commit -m'Regenerated from $^' bits/errno.h) endif touch $@ |