From 20a7fea0643be24e42313219605c9622f4e2a66e Mon Sep 17 00:00:00 2001 From: James Zern Date: Sat, 28 Jan 2017 13:33:07 -0800 Subject: [PATCH] extras/Makefile.am: fix libwebpextras.la reference drop './' from the reference in webp_quality_LDADD.. this form is used in the other makefiles. this fixes a parallel build failure seen under freebsd: make[1]: don't know how to make ./libwebpextras.la. Stop Change-Id: I59635a0c747d402cd990f6379eb1948c3e40f278 --- extras/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extras/Makefile.am b/extras/Makefile.am index 28ec20b1..4863c613 100644 --- a/extras/Makefile.am +++ b/extras/Makefile.am @@ -22,5 +22,5 @@ get_disto_LDADD += $(PNG_LIBS) $(JPEG_LIBS) $(TIFF_LIBS) webp_quality_SOURCES = webp_quality.c webp_quality_CPPFLAGS = $(AM_CPPFLAGS) $(USE_EXPERIMENTAL_CODE) webp_quality_LDADD = ../imageio/libimageio_util.la -webp_quality_LDADD += ./libwebpextras.la +webp_quality_LDADD += libwebpextras.la webp_quality_LDADD += ../src/libwebp.la