From: Danomi Manchego Date: Tue, 11 Feb 2014 02:07:14 +0000 (-0500) Subject: libjpeg: fix "jpegtran" spelling in target-install hook X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0e27be34c304588e86be8fd6aec726682c17bbe0;p=buildroot.git libjpeg: fix "jpegtran" spelling in target-install hook Use correct bin name so that LIBJPEG_REMOVE_USELESS_TOOLS fixup actually removes it. Signed-off-by: Danomi Manchego Signed-off-by: Peter Korsgaard --- diff --git a/package/libjpeg/libjpeg.mk b/package/libjpeg/libjpeg.mk index b0b02add3c..a5898a4af2 100644 --- a/package/libjpeg/libjpeg.mk +++ b/package/libjpeg/libjpeg.mk @@ -10,7 +10,7 @@ LIBJPEG_SOURCE = jpegsrc.v$(LIBJPEG_VERSION).tar.gz LIBJPEG_INSTALL_STAGING = YES define LIBJPEG_REMOVE_USELESS_TOOLS - rm -f $(addprefix $(TARGET_DIR)/usr/bin/,cjpeg djpeg jpegtrans rdjpgcom wrjpgcom) + rm -f $(addprefix $(TARGET_DIR)/usr/bin/,cjpeg djpeg jpegtran rdjpgcom wrjpgcom) endef LIBJPEG_POST_INSTALL_TARGET_HOOKS += LIBJPEG_REMOVE_USELESS_TOOLS