diff options
author | seb <seb> | 2003-08-09 17:11:04 +0000 |
---|---|---|
committer | seb <seb> | 2003-08-09 17:11:04 +0000 |
commit | 211b670a9efaff4482acb629fabc88e81bacdf76 (patch) | |
tree | 789f2d6a04b736a7812983cfe172399819c9ded4 /chat | |
parent | fb9b5d8bf63395affb70e704462c09fb1a041b61 (diff) | |
download | pkgsrc-211b670a9efaff4482acb629fabc88e81bacdf76.tar.gz |
Deal with blindly added -liconv in src/Makefile.{am,in}:
-current does not have it and can do without it.
XXX Time to add this BUILDLINK_TRANSFORM directive to
converters/libiconv/buildlink2.mk ?
Diffstat (limited to 'chat')
-rw-r--r-- | chat/everybuddy/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/chat/everybuddy/Makefile b/chat/everybuddy/Makefile index e60c7e0d063..e8bad8c60ba 100644 --- a/chat/everybuddy/Makefile +++ b/chat/everybuddy/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2003/07/13 13:50:45 wiz Exp $ +# $NetBSD: Makefile,v 1.7 2003/08/09 17:11:04 seb Exp $ .include "Makefile.common" PKGREVISION= 4 @@ -10,3 +10,8 @@ CONFLICTS+= everybuddy-gnome-[0-9]* .include "../../converters/libiconv/buildlink2.mk" .include "../../x11/gtk/buildlink2.mk" .include "../../mk/bsd.pkg.mk" + +_ICONV_LIB= ${BUILDLINK_LIBICONV_LDADD:M-l*:C/-l//} +.if empty(_ICONV_LIB) +BUILDLINK_TRANSFORM+= S:-liconv: +.endif |