diff options
author | Siddhesh Poyarekar <siddhesh@redhat.com> | 2014-11-20 12:33:44 +0530 |
---|---|---|
committer | Siddhesh Poyarekar <siddhesh@redhat.com> | 2014-11-24 11:41:43 +0530 |
commit | fb6784e3068a747ead34e6dee6a9a1978668a955 (patch) | |
tree | b086bcf40ac2582d20a20e5be02e3bdf996af1ec /elf | |
parent | 2886d2d14dd7de6339b04505c5d2f9fc5c844751 (diff) | |
download | glibc-fb6784e3068a747ead34e6dee6a9a1978668a955.tar.gz glibc-fb6784e3068a747ead34e6dee6a9a1978668a955.tar.xz glibc-fb6784e3068a747ead34e6dee6a9a1978668a955.zip |
Remove IS_IN_ldconfig
Replace with IS_IN (ldconfig). No change in generated code. * elf/Makefile (CFLAGS-ldconfig.c): Remove definition of IS_IN_ldconfig. * sysdeps/unix/sysv/linux/x86_64/dl-procinfo.c: Use IS_IN. * sysdeps/unix/sysv/linux/x86_64/dl-procinfo.h: Likewise.
Diffstat (limited to 'elf')
-rw-r--r-- | elf/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/elf/Makefile b/elf/Makefile index e5598335a1..3629135221 100644 --- a/elf/Makefile +++ b/elf/Makefile @@ -437,7 +437,7 @@ $(objpfx)ldconfig: $(ldconfig-modules:%=$(objpfx)%.o) SYSCONF-FLAGS := -D'SYSCONFDIR="$(sysconfdir)"' CFLAGS-ldconfig.c = $(SYSCONF-FLAGS) -D'LIBDIR="$(libdir)"' \ - -D'SLIBDIR="$(slibdir)"' -DIS_IN_ldconfig=1 -DNOT_IN_libc=1 + -D'SLIBDIR="$(slibdir)"' -DNOT_IN_libc libof-ldconfig = ldconfig CFLAGS-dl-cache.c = $(SYSCONF-FLAGS) CFLAGS-cache.c = $(SYSCONF-FLAGS) |