diff mbox

[1/1] package/libsquish: Fix staging install

Message ID 20170429134316.30233-1-bernd.kuhls@t-online.de
State Accepted
Headers show

Commit Message

Bernd Kuhls April 29, 2017, 1:43 p.m. UTC
squish.pc was renamed upstream to libsquish.pc

Fixes
http://autobuild.buildroot.net/results/04c/04c30f9a425d10111974a315a6d7474e243cbbd3/

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 package/libsquish/libsquish.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Thomas Petazzoni April 29, 2017, 1:50 p.m. UTC | #1
Hello,

On Sat, 29 Apr 2017 15:43:16 +0200, Bernd Kuhls wrote:
> squish.pc was renamed upstream to libsquish.pc
> 
> Fixes
> http://autobuild.buildroot.net/results/04c/04c30f9a425d10111974a315a6d7474e243cbbd3/
> 
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
> ---
>  package/libsquish/libsquish.mk | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Applied to master, after adjusting the commit title. Thanks!

Thomas
diff mbox

Patch

diff --git a/package/libsquish/libsquish.mk b/package/libsquish/libsquish.mk
index a707355b55..9b447b0d80 100644
--- a/package/libsquish/libsquish.mk
+++ b/package/libsquish/libsquish.mk
@@ -21,7 +21,7 @@  define LIBSQUISH_INSTALL_STAGING_CMDS
 	mkdir -p $(STAGING_DIR)/usr/lib
 	$(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) \
 		install PREFIX=/usr INSTALL_DIR=$(STAGING_DIR)/usr
-	$(INSTALL) -D -m 644 $(@D)/squish.pc $(STAGING_DIR)/usr/lib/pkgconfig/squish.pc
+	$(INSTALL) -D -m 644 $(@D)/libsquish.pc $(STAGING_DIR)/usr/lib/pkgconfig/libsquish.pc
 	ln -sf libsquish.so.0.0 $(STAGING_DIR)/usr/lib/libsquish.so
 	ln -sf libsquish.so.0.0 $(STAGING_DIR)/usr/lib/libsquish.so.0
 endef