From 5fd38c5f6771cf7c79daee0f464b3cd4d601501e Mon Sep 17 00:00:00 2001 From: ISSOtm Date: Fri, 14 Feb 2020 03:07:24 +0100 Subject: [PATCH] Do not try to link libpng statically --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index b2a5a0a2..9fcef6e9 100644 --- a/Makefile +++ b/Makefile @@ -23,9 +23,9 @@ CHECKPATCH := ../linux/scripts/checkpatch.pl # Other variables PKG_CONFIG := pkg-config -PNGCFLAGS := `${PKG_CONFIG} --static --cflags libpng` -PNGLDFLAGS := `${PKG_CONFIG} --static --libs-only-L libpng` -PNGLDLIBS := `${PKG_CONFIG} --static --libs-only-l libpng` +PNGCFLAGS := `${PKG_CONFIG} --cflags libpng` +PNGLDFLAGS := `${PKG_CONFIG} --libs-only-L libpng` +PNGLDLIBS := `${PKG_CONFIG} --libs-only-l libpng` VERSION_STRING := `git describe --tags --dirty --always 2>/dev/null`