diff options
author | Lars-Peter Clausen <lars@metafoo.de> | 2010-01-13 05:21:50 +0000 |
---|---|---|
committer | Lars-Peter Clausen <lars@metafoo.de> | 2010-01-13 05:21:50 +0000 |
commit | 8b84a711d8dab50385490394a946ac9936515d92 (patch) | |
tree | b0655d501628a0a08243bef863010268e26d9821 /tools/libuuid | |
parent | 57a971af5d827db619c7114bd40ea2ef7a0a14ab (diff) | |
download | upstream-8b84a711d8dab50385490394a946ac9936515d92.tar.gz upstream-8b84a711d8dab50385490394a946ac9936515d92.tar.bz2 upstream-8b84a711d8dab50385490394a946ac9936515d92.zip |
Fix libuuid header location and reenable building of mkfs.ubifs
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19113 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'tools/libuuid')
-rw-r--r-- | tools/libuuid/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/libuuid/Makefile b/tools/libuuid/Makefile index 672591fe1d..4e6602e488 100644 --- a/tools/libuuid/Makefile +++ b/tools/libuuid/Makefile @@ -36,13 +36,13 @@ define Host/Compile endef define Host/Install - $(INSTALL_DIR) $(STAGING_DIR_HOST)/{lib,include} - $(CP) $(HOST_BUILD_DIR)/lib/uuid/uuid.h $(STAGING_DIR_HOST)/include/ + $(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/ endef define Host/Clean - rm -f $(STAGING_DIR_HOST)/include/uuid.h + rm -f $(STAGING_DIR_HOST)/include/uuid/uuid.h rm -f $(STAGING_DIR_HOST)/lib/uuid/libuuid.{so*,a} $(call Host/Clean/Default) endef |