From f7c4735a19cd848d9e5e51da8f68443fdf113b34 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Sat, 16 Jan 2010 00:11:38 +0000 Subject: [PATCH] libuuid: only build the static variant - fixes compile on mac os x SVN-Revision: 19157 --- tools/libuuid/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/libuuid/Makefile b/tools/libuuid/Makefile index 4e6602e488..f15a87a935 100644 --- a/tools/libuuid/Makefile +++ b/tools/libuuid/Makefile @@ -32,18 +32,18 @@ define Host/Configure endef define Host/Compile - $(MAKE) -C $(HOST_BUILD_DIR)/lib/uuid + $(MAKE) -C $(HOST_BUILD_DIR)/lib/uuid libuuid.a endef define Host/Install $(INSTALL_DIR) $(STAGING_DIR_HOST)/{lib,include/uuid} $(CP) $(HOST_BUILD_DIR)/lib/uuid/uuid.h $(STAGING_DIR_HOST)/include/uuid/ - $(CP) $(HOST_BUILD_DIR)/lib/uuid/libuuid.{so*,a} $(STAGING_DIR_HOST)/lib/ + $(CP) $(HOST_BUILD_DIR)/lib/uuid/libuuid.a $(STAGING_DIR_HOST)/lib/ endef define Host/Clean rm -f $(STAGING_DIR_HOST)/include/uuid/uuid.h - rm -f $(STAGING_DIR_HOST)/lib/uuid/libuuid.{so*,a} + rm -f $(STAGING_DIR_HOST)/lib/uuid/libuuid.* $(call Host/Clean/Default) endef -- 2.30.2