mirror of
git://sourceware.org/git/glibc.git
synced 2024-11-27 03:41:23 +08:00
support: Export bindir path on support_path
Checked on x86_64-linux-gnu. * support/Makefile (CFLAGS-support_paths.c): Add -DBINDIR_PATH. * support/support.h (support_bindir_prefix): New variable. * support/support_paths.c [BINDIR_PATH] (support_bindir_prefix): Reviewed-by: DJ Delorie <dj@redhat.com>
This commit is contained in:
parent
91f043ae84
commit
c7ac9caaae
@ -1,5 +1,9 @@
|
||||
2019-05-14 Adhemerval Zanella <adhemerval.zanella@linaro.org>
|
||||
|
||||
* support/Makefile (CFLAGS-support_paths.c): Add -DBINDIR_PATH.
|
||||
* support/support.h (support_bindir_prefix): New variable.
|
||||
* support/support_paths.c [BINDIR_PATH] (support_bindir_prefix):
|
||||
|
||||
* config.make.in (bindir): New variable.
|
||||
|
||||
* sysdeps/nptl/lowlevellock.h (__lll_trylock): New macro.
|
||||
|
@ -179,7 +179,8 @@ CFLAGS-support_paths.c = \
|
||||
-DOBJDIR_PATH=\"`cd $(objpfx)/..; pwd`\" \
|
||||
-DOBJDIR_ELF_LDSO_PATH=\"`cd $(objpfx)/..; pwd`/elf/$(rtld-installed-name)\" \
|
||||
-DINSTDIR_PATH=\"$(prefix)\" \
|
||||
-DLIBDIR_PATH=\"$(libdir)\"
|
||||
-DLIBDIR_PATH=\"$(libdir)\" \
|
||||
-DBINDIR_PATH=\"$(bindir)\"
|
||||
|
||||
ifeq (,$(CXX))
|
||||
LINKS_DSO_PROGRAM = links-dso-program-c
|
||||
|
@ -105,6 +105,8 @@ extern const char support_objdir_elf_ldso[];
|
||||
extern const char support_install_prefix[];
|
||||
/* Corresponds to the install's lib/ or lib64/ directory. */
|
||||
extern const char support_libdir_prefix[];
|
||||
/* Corresponds to the install's bin/ directory. */
|
||||
extern const char support_bindir_prefix[];
|
||||
|
||||
extern ssize_t support_copy_file_range (int, off64_t *, int, off64_t *,
|
||||
size_t, unsigned int);
|
||||
|
@ -57,3 +57,10 @@ const char support_libdir_prefix[] = LIBDIR_PATH;
|
||||
#else
|
||||
# error please -DLIBDIR_PATH=something in the Makefile
|
||||
#endif
|
||||
|
||||
#ifdef BINDIR_PATH
|
||||
/* Corresponds to the install's bin/ directory. */
|
||||
const char support_bindir_prefix[] = BINDIR_PATH;
|
||||
#else
|
||||
# error please -DBINDIR_PATH=something in the Makefile
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user