diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2017-09-10 17:39:39 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2017-09-10 17:39:39 +0200 |
commit | 65b22ebc615e6cbb3e8e9102762c362a9d9ecffd (patch) | |
tree | 85e6883013d4f19f1706f4a00b37857b705ec7b6 /elf/rtld-Rules | |
parent | 00c3da43ace363315fb9e70a6d4696de0630f6cf (diff) | |
download | glibc-65b22ebc615e6cbb3e8e9102762c362a9d9ecffd.zip glibc-65b22ebc615e6cbb3e8e9102762c362a9d9ecffd.tar.gz glibc-65b22ebc615e6cbb3e8e9102762c362a9d9ecffd.tar.bz2 |
Fix $(error) use in Makefile
* elf/rtld-Rules: Fix $(error) use.
Diffstat (limited to 'elf/rtld-Rules')
-rw-r--r-- | elf/rtld-Rules | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/elf/rtld-Rules b/elf/rtld-Rules index 2c7b998..a1df9bf 100644 --- a/elf/rtld-Rules +++ b/elf/rtld-Rules @@ -29,7 +29,7 @@ rtld-all: # When run from the elf/Makefile to build rtld-libc.a, $(subdir) is elf. ifneq ($(subdir),elf) ifndef rtld-modules -error rtld-modules not set +$(error rtld-modules not set) endif endif @@ -37,7 +37,7 @@ ifndef rtld-modules # Running to build rtld-libc.a, driving runs of $(rtld-subdir-make), below. 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 include ../Makeconfig |