From d7a2425f0d0cc63e9c53932676a0f12ec94ac897 Mon Sep 17 00:00:00 2001 From: naddy Date: Fri, 6 Mar 2009 15:08:53 +0000 Subject: [PATCH] fix library order so static linking will succeed --- graphics/pngmeta/files/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/graphics/pngmeta/files/Makefile b/graphics/pngmeta/files/Makefile index d0240511112..a916fa9384f 100644 --- a/graphics/pngmeta/files/Makefile +++ b/graphics/pngmeta/files/Makefile @@ -1,11 +1,11 @@ -# $OpenBSD: Makefile,v 1.1.1.1 2005/10/03 14:36:58 robert Exp $ +# $OpenBSD: Makefile,v 1.2 2009/03/06 15:08:53 naddy Exp $ PROG= pngmeta SRCS= pngmeta.c CFLAGS+=-I${LOCALBASE}/include/libpng -DVERSION=1.11 DPADD= ${LIBM} -LDADD= -L${LOCALBASE}/lib -lm -lpng -lz +LDADD= -L${LOCALBASE}/lib -lpng -lz -lm MAN= pngmeta.1