All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH v4 1/2] eigen: follow default installation scheme
@ 2014-03-19 15:48 Davide Viti
  2014-03-19 15:48 ` [Buildroot] [PATCH v4 2/2] eigen: add an option to install unsupported modules Davide Viti
  2014-03-19 18:00 ` [Buildroot] [PATCH v4 1/2] eigen: follow default installation scheme Thomas Petazzoni
  0 siblings, 2 replies; 4+ messages in thread
From: Davide Viti @ 2014-03-19 15:48 UTC (permalink / raw)
  To: buildroot

eigen's build-system (cmake), by default, installs the header files
in /usr/include/eigen3

Signed-off-by: Davide Viti <d.viti@infosolution.it>
---
 Changes v3 -> v4:
   - install files into $(STAGING_DIR)/usr/include/eigen3
   - use EIGEN_DEST_DIR to reduce name duplication

 package/eigen/eigen.mk | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/package/eigen/eigen.mk b/package/eigen/eigen.mk
index 5abd464..9a5ce7d 100644
--- a/package/eigen/eigen.mk
+++ b/package/eigen/eigen.mk
@@ -12,12 +12,14 @@ EIGEN_LICENSE = MPL2, BSD-3c, LGPLv2.1
 EIGEN_LICENSE_FILES = COPYING.MPL2 COPYING.BSD COPYING.LGPL COPYING.README
 EIGEN_INSTALL_STAGING = YES
 EIGEN_INSTALL_TARGET = NO
+EIGEN_DEST_DIR = $(STAGING_DIR)/usr/include/eigen3
 
 # This package only consists of headers that need to be
 # copied over to the sysroot for compile time use
 define EIGEN_INSTALL_STAGING_CMDS
-	$(RM) -r $(STAGING_DIR)/usr/include/Eigen
-	cp -a $(@D)/Eigen $(STAGING_DIR)/usr/include/
+	$(RM) -r $(EIGEN_DEST_DIR)
+	mkdir -p $(EIGEN_DEST_DIR)
+	cp -a $(@D)/Eigen $(EIGEN_DEST_DIR)
 endef
 
 $(eval $(generic-package))
-- 
1.9.0

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2014-03-19 18:01 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-19 15:48 [Buildroot] [PATCH v4 1/2] eigen: follow default installation scheme Davide Viti
2014-03-19 15:48 ` [Buildroot] [PATCH v4 2/2] eigen: add an option to install unsupported modules Davide Viti
2014-03-19 18:01   ` Thomas Petazzoni
2014-03-19 18:00 ` [Buildroot] [PATCH v4 1/2] eigen: follow default installation scheme Thomas Petazzoni

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.