X-Git-Url: http://git.ozo.com/?a=blobdiff_plain;f=tools%2Fsquashfs%2FMakefile;h=53baa7abfbd203710f26d07a69d2fab4b448515c;hb=62023555c741edfbb9c0ea5802a2b2b82850774a;hp=d0098361f9c54e7b088acf5b9c11b2a4f7383fb6;hpb=056d99b65f1459a6fcbf38a665a0b526b690a7f1;p=openwrt-github%2F.git diff --git a/tools/squashfs/Makefile b/tools/squashfs/Makefile index d0098361f9..53baa7abfb 100644 --- a/tools/squashfs/Makefile +++ b/tools/squashfs/Makefile @@ -21,15 +21,17 @@ include $(INCLUDE_DIR)/host-build.mk define Build/Compile $(MAKE) -C $(PKG_BUILD_DIR)/squashfs-tools \ LZMAPATH=$(STAGING_DIR_HOST)/lib \ - mksquashfs-lzma + mksquashfs-lzma unsquashfs-lzma endef define Build/Install $(INSTALL_BIN) $(PKG_BUILD_DIR)/squashfs-tools/mksquashfs-lzma $(STAGING_DIR_HOST)/bin/ + $(INSTALL_BIN) $(PKG_BUILD_DIR)/squashfs-tools/unsquashfs-lzma $(STAGING_DIR_HOST)/bin/ endef define Build/Clean rm -f $(STAGING_DIR_HOST)/bin/mksquashfs-lzma + rm -f $(STAGING_DIR_HOST)/bin/unsquashfs-lzma endef $(eval $(call HostBuild))