diff options
author | Christian Stewart <christian@paral.in> | 2016-07-24 14:10:27 -0700 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-07-27 23:09:08 +0200 |
commit | 6b372804be2d60f8f4cef17ae835de8a3aae00c5 (patch) | |
tree | 1d2c368038cdbd56d84b77e0621b9b8a87b800b1 /package/btrfs-progs/0004-Makefile.in-install-static-library-and-headers-in-in.patch | |
parent | 8ce90cc87854b2b3ce30c6fd50123ee6f0ed445a (diff) | |
download | buildroot-6b372804be2d60f8f4cef17ae835de8a3aae00c5.tar.gz buildroot-6b372804be2d60f8f4cef17ae835de8a3aae00c5.zip |
package/btrfs-progs: install to staging directory
Other packages when building against btrfs-progs require headers in the
staging directory under /usr/include/btrfs. This patch enables
installing btrfs-progs to the staging directory to enable other packages
to build against the btrfs-progs headers.
Signed-off-by: Christian Stewart <christian@paral.in>
[Thomas: take into account the BR2_STATIC_LIBS case, by adding the
relevant BTRFS_PROGS_INSTALL_STAGING_OPTS variable, as well as a patch
to make sure "install-static" installs the static library and the
headers.]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/btrfs-progs/0004-Makefile.in-install-static-library-and-headers-in-in.patch')
-rw-r--r-- | package/btrfs-progs/0004-Makefile.in-install-static-library-and-headers-in-in.patch | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/package/btrfs-progs/0004-Makefile.in-install-static-library-and-headers-in-in.patch b/package/btrfs-progs/0004-Makefile.in-install-static-library-and-headers-in-in.patch new file mode 100644 index 0000000000..e6e9eab8bb --- /dev/null +++ b/package/btrfs-progs/0004-Makefile.in-install-static-library-and-headers-in-in.patch @@ -0,0 +1,45 @@ +From 2c2c2d992c3b298793983317588f73cf41675652 Mon Sep 17 00:00:00 2001 +From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> +Date: Wed, 27 Jul 2016 22:49:58 +0200 +Subject: [PATCH] Makefile.in: install static library and headers in + install-static + +Currently, the install-static target only installs the statically +compiled tools. However, some programs outside of btrfs-progs (for +example docker) link with the btrfs libraries. If such programs want +to link statically against the btrfs-progs library, then this library +should be installed by "install-static". Indeed, "make install" cannot +be used if the support for shared library is not enabled. + +Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> +--- + Makefile.in | 6 +++++- + 1 file changed, 5 insertions(+), 1 deletion(-) + +diff --git a/Makefile.in b/Makefile.in +index 8450ab3..0d3b490 100644 +--- a/Makefile.in ++++ b/Makefile.in +@@ -183,7 +183,7 @@ test: test-fsck test-convert test-misc + # NOTE: For static compiles, you need to have all the required libs + # static equivalent available + # +-static: $(progs_static) ++static: $(progs_static) $(libs_static) + + version.h: version.sh version.h.in configure.ac + @echo " [SH] $@" +@@ -346,6 +346,10 @@ install-static: $(progs_static) $(INSTALLDIRS) + for p in $(progs_static) ; do \ + $(INSTALL) -D -m755 $$p $(DESTDIR)$(bindir)/`basename $$p .static` ; \ + done ++ $(INSTALL) -m755 -d $(DESTDIR)$(libdir) ++ $(INSTALL) $(libs_static) $(DESTDIR)$(libdir) ++ $(INSTALL) -m755 -d $(DESTDIR)$(incdir) ++ $(INSTALL) -m644 $(headers) $(DESTDIR)$(incdir) + + $(INSTALLDIRS): + @echo "Making install in $(patsubst install-%,%,$@)" +-- +2.7.4 + |