From 77b5b803c7ae4298b885d6b2e0b7506804943669 Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni Date: Fri, 25 Jun 2010 11:41:56 +0200 Subject: cmake: pass LDFLAGS/CFLAGS when building for the host Passing LDFLAGS/CFLAGS when building for the host allows cmake to be compiled with the proper -rpath value (the -rpath option is added to HOST_LDFLAGS in a later commit). Signed-off-by: Thomas Petazzoni --- package/cmake/cmake.mk | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'package/cmake') diff --git a/package/cmake/cmake.mk b/package/cmake/cmake.mk index 42d4ff5ed..b388874ae 100644 --- a/package/cmake/cmake.mk +++ b/package/cmake/cmake.mk @@ -4,7 +4,9 @@ CMAKE_SITE=http://www.cmake.org/files/v2.8/ define HOST_CMAKE_CONFIGURE_CMDS (cd $(@D); \ - ./bootstrap --prefix=$(HOST_DIR)/usr --parallel=$(BR2_JLEVEL) \ + LDFLAGS="$(HOST_LDFLAGS)" \ + CFLAGS="$(HOST_CFLAGS)" \ + ./bootstrap --prefix=$(HOST_DIR)/usr --parallel=$(BR2_JLEVEL) \ ) endef -- cgit v1.2.3