summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2017-01-28 13:33:07 -0800
committerJames Zern <jzern@google.com>2017-01-28 13:33:07 -0800
commit20a7fea0643be24e42313219605c9622f4e2a66e (patch)
treec2f25b894c5078393da349cf29b66c1cef6c1ac5
parent415f3ffe3d16e58011fea82b05736299564572c0 (diff)
downloadlibwebp-20a7fea0643be24e42313219605c9622f4e2a66e.tar.gz
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
-rw-r--r--extras/Makefile.am2
1 files changed, 1 insertions, 1 deletions
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