mirror of git://sourceware.org/git/glibc.git
Fix $(error) use in Makefile
* elf/rtld-Rules: Fix $(error) use.
This commit is contained in:
parent
00c3da43ac
commit
65b22ebc61
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
* sunrpc/tst-udp-timeout.c (test_udp_server): Increase timeout to 2.5
|
* sunrpc/tst-udp-timeout.c (test_udp_server): Increase timeout to 2.5
|
||||||
seconds.
|
seconds.
|
||||||
|
* elf/rtld-Rules: Fix $(error) use.
|
||||||
|
|
||||||
2017-09-09 Mike FABIAN <mfabian@redhat.com>
|
2017-09-09 Mike FABIAN <mfabian@redhat.com>
|
||||||
|
|
||||||
|
|
|
@ -29,7 +29,7 @@ rtld-all:
|
||||||
# When run from the elf/Makefile to build rtld-libc.a, $(subdir) is elf.
|
# When run from the elf/Makefile to build rtld-libc.a, $(subdir) is elf.
|
||||||
ifneq ($(subdir),elf)
|
ifneq ($(subdir),elf)
|
||||||
ifndef rtld-modules
|
ifndef rtld-modules
|
||||||
error rtld-modules not set
|
$(error rtld-modules not set)
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
@ -37,7 +37,7 @@ ifndef rtld-modules
|
||||||
# Running to build rtld-libc.a, driving runs of $(rtld-subdir-make), below.
|
# Running to build rtld-libc.a, driving runs of $(rtld-subdir-make), below.
|
||||||
|
|
||||||
ifndef rtld-subdirs
|
ifndef rtld-subdirs
|
||||||
error This makefile is a subroutine of elf/Makefile not to be used directly
|
$(error This makefile is a subroutine of elf/Makefile not to be used directly)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
include ../Makeconfig
|
include ../Makeconfig
|
||||||
|
|
Loading…
Reference in New Issue