diff options
Diffstat (limited to 'sysdeps/posix')
-rw-r--r-- | sysdeps/posix/Makefile | 12 | ||||
-rw-r--r-- | sysdeps/posix/mk-stdiolim.c | 8 |
2 files changed, 10 insertions, 10 deletions
diff --git a/sysdeps/posix/Makefile b/sysdeps/posix/Makefile index a47f77af32..358114a921 100644 --- a/sysdeps/posix/Makefile +++ b/sysdeps/posix/Makefile @@ -20,13 +20,13 @@ ifneq (yes,$(inhibit-stdio_lim)) # Disable these rules if we generate stdio_lim.h by other means. ifeq (yes,$(cross-compiling)) -$(common-objpfx)stdio_lim.h: +$(common-objpfx)bits/stdio_lim.h: @echo - @echo "You must build stdio_lim.h by hand. Stop." + @echo "You must build <bits/stdio_lim.h> by hand. Stop." @echo @exit 1 else -$(common-objpfx)stdio_lim.h: $(common-objpfx)mk-stdiolim +$(common-objpfx)bits/stdio_lim.h: $(common-objpfx)mk-stdiolim $(dir $<)$(notdir $<) > $@-t mv $@-t $@ endif @@ -36,10 +36,10 @@ mk-stdiolim-CFLAGS = $(patsubst -I$(shell pwd)//%,-I/%,\ $(patsubst -I%,-I$(shell pwd)/%,$(+includes))) # $(ALL_BUILD_CFLAGS) needs to come last because it contains unwanted -Is. $(common-objpfx)mk-stdiolim: $(sysdep_dir)/posix/mk-stdiolim.c \ - $(..)posix/posix1_lim.h local_lim.h + $(..)posix/bits/posix1_lim.h bits/local_lim.h $(common-objdir-compile) -common-generated := $(common-generated) stdio_lim.h mk-stdiolim -before-compile := $(before-compile) $(common-objpfx)stdio_lim.h +common-generated := $(common-generated) bits/stdio_lim.h mk-stdiolim +before-compile := $(before-compile) $(common-objpfx)bits/stdio_lim.h endif # inhibit-stdio_lim diff --git a/sysdeps/posix/mk-stdiolim.c b/sysdeps/posix/mk-stdiolim.c index 5df460e89a..a129f2b4f9 100644 --- a/sysdeps/posix/mk-stdiolim.c +++ b/sysdeps/posix/mk-stdiolim.c @@ -16,7 +16,7 @@ License along with the GNU C Library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -#include <posix1_lim.h> +#include <bits/posix1_lim.h> int main() @@ -32,9 +32,9 @@ main() puts ("#endif"); /* POSIX does not require that OPEN_MAX and PATH_MAX be defined, so - <local_lim.h> will not define them if they are run-time variant (which - is the case in the Hurd). ANSI still requires that FOPEN_MAX and - FILENAME_MAX be defined, however. */ + <bits/local_lim.h> will not define them if they are run-time + variant (which is the case in the Hurd). ANSI still requires + that FOPEN_MAX and FILENAME_MAX be defined, however. */ printf("#define FOPEN_MAX %u\n", #ifdef OPEN_MAX |