diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2022-01-23 07:29:27 -0800 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2022-01-23 07:29:27 -0800 |
commit | 0e3839bde6f93e1e3eefce815be3636e3d81054d (patch) | |
tree | a0b56f95873de9238abee7e90916a832c2759bc8 /bfd/Makefile.am | |
parent | ad69b6b861373f63e621c0d7754cd47d1c1463e2 (diff) | |
download | gdb-0e3839bde6f93e1e3eefce815be3636e3d81054d.zip gdb-0e3839bde6f93e1e3eefce815be3636e3d81054d.tar.gz gdb-0e3839bde6f93e1e3eefce815be3636e3d81054d.tar.bz2 |
bfd: Properly install library and header files
Rename bfdlib_LTLIBRARIES and bfdinclude_HEADERS to lib_LTLIBRARIES and
include_HEADERS to fix the missing installed library and header files in
bfd caused by
commit bd32be01c997f686ab0b53f0640eaa0aeb61fbd3
Author: Mike Frysinger <vapier@gentoo.org>
Date: Fri Dec 3 00:23:20 2021 -0500
bfd: merge doc subdir up a level
PR binutils/28807
* Makefile.am (bfdlib_LTLIBRARIES): Renamed to ...
(lib_LTLIBRARIES): This.
(bfdinclude_HEADERS): Renamed to ...
(include_HEADERS): This.
* Makefile.in: Regenerate.
* doc/local.mk (install): Removed.
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 0f01384..8866d4d 100644 --- a/bfd/Makefile.am +++ b/bfd/Makefile.am @@ -36,14 +36,14 @@ libbfd_la_LDFLAGS = if INSTALL_LIBBFD bfdlibdir = @bfdlibdir@ bfdincludedir = @bfdincludedir@ -bfdlib_LTLIBRARIES = libbfd.la -bfdinclude_HEADERS = $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \ - $(INCDIR)/diagnostics.h $(INCDIR)/bfdlink.h +lib_LTLIBRARIES = libbfd.la +include_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 = -bfdinclude_HEADERS = +include_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 -bfdinclude_HEADERS += $(INCDIR)/plugin-api.h +include_HEADERS += $(INCDIR)/plugin-api.h LIBDL = @lt_cv_dlopen_libs@ endif |