diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2022-01-23 10:40:46 -0800 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2022-01-23 10:40:46 -0800 |
commit | 451c003d5fcebbc7b7bc2516d43aede6d02bd501 (patch) | |
tree | 2bde228421cfbd00d63cb826104cd77ca480c567 /bfd/Makefile.am | |
parent | 0e3839bde6f93e1e3eefce815be3636e3d81054d (diff) | |
download | gdb-451c003d5fcebbc7b7bc2516d43aede6d02bd501.zip gdb-451c003d5fcebbc7b7bc2516d43aede6d02bd501.tar.gz gdb-451c003d5fcebbc7b7bc2516d43aede6d02bd501.tar.bz2 |
bfd: Partially revert commit 0e3839bde6f
Partially revert
commit 0e3839bde6f93e1e3eefce815be3636e3d81054d
Author: H.J. Lu <hjl.tools@gmail.com>
Date: Sun Jan 23 07:29:27 2022 -0800
bfd: Properly install library and header files
PR binutils/28807
* Makefile.am: Revert bfdlib_LTLIBRARIES and bfdinclude_HEADERS
changes.
* Makefile.in: Regenerate.
Diffstat (limited to 'bfd/Makefile.am')
-rw-r--r-- | bfd/Makefile.am | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/bfd/Makefile.am b/bfd/Makefile.am index 8866d4d..0f01384 100644 --- a/bfd/Makefile.am +++ b/bfd/Makefile.am @@ -36,14 +36,14 @@ libbfd_la_LDFLAGS = if INSTALL_LIBBFD bfdlibdir = @bfdlibdir@ bfdincludedir = @bfdincludedir@ -lib_LTLIBRARIES = libbfd.la -include_HEADERS = $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \ - $(INCDIR)/diagnostics.h $(INCDIR)/bfdlink.h +bfdlib_LTLIBRARIES = libbfd.la +bfdinclude_HEADERS = $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \ + $(INCDIR)/diagnostics.h $(INCDIR)/bfdlink.h else !INSTALL_LIBBFD # Empty these so that the respective installation directories will not be created. bfdlibdir = bfdincludedir = -include_HEADERS = +bfdinclude_HEADERS = rpath_bfdlibdir = @bfdlibdir@ noinst_LTLIBRARIES = libbfd.la libbfd_la_LDFLAGS += -rpath $(rpath_bfdlibdir) @@ -60,7 +60,7 @@ NO_WERROR = @NO_WERROR@ AM_CFLAGS = $(WARN_CFLAGS) $(ZLIBINC) AM_CPPFLAGS = -DBINDIR='"$(bindir)"' -DLIBDIR='"$(libdir)"' @LARGEFILE_CPPFLAGS@ if PLUGINS -include_HEADERS += $(INCDIR)/plugin-api.h +bfdinclude_HEADERS += $(INCDIR)/plugin-api.h LIBDL = @lt_cv_dlopen_libs@ endif |