summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2010-01-16 00:11:38 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2010-01-16 00:11:38 +0000
commitefe8a21694715de2a94a3dc890730f9d69d31190 (patch)
tree2df4ed4d75dc514bb4332550d1e6e744efd3b310 /tools
parentf0e79d4172c0bedda3db145812c269856321bfd0 (diff)
libuuid: only build the static variant - fixes compile on mac os x
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19157 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'tools')
-rw-r--r--tools/libuuid/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/libuuid/Makefile b/tools/libuuid/Makefile
index 4e6602e48..f15a87a93 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