diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2019-05-13 13:57:37 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2019-05-14 11:04:37 -0300 |
commit | c7ac9caaae6f8d02d4e0c7618d4991324a084c66 (patch) | |
tree | de931949e6be6b02da190dd6e9f7324ba1c7798c /support/Makefile | |
parent | 91f043ae84947a8a25eb94329fcb4fd1ea3914c3 (diff) | |
download | glibc-c7ac9caaae6f8d02d4e0c7618d4991324a084c66.tar glibc-c7ac9caaae6f8d02d4e0c7618d4991324a084c66.tar.gz glibc-c7ac9caaae6f8d02d4e0c7618d4991324a084c66.tar.bz2 glibc-c7ac9caaae6f8d02d4e0c7618d4991324a084c66.zip |
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>
Diffstat (limited to 'support/Makefile')
-rw-r--r-- | support/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/support/Makefile b/support/Makefile index 64044f6f5c..fe416cdc5f 100644 --- a/support/Makefile +++ b/support/Makefile @@ -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 |