diff options
author | Boris Samorodov <bsam@FreeBSD.org> | 2013-09-07 19:49:41 +0000 |
---|---|---|
committer | Boris Samorodov <bsam@FreeBSD.org> | 2013-09-07 19:49:41 +0000 |
commit | 7046a55fd8c78a3bf8c78c239a321985cdb6e3ad (patch) | |
tree | 44170eaab332d8a08ad941e3638a2e1e422229c8 /devel/git | |
parent | 78ba9cefd2a78753796f0a79d3906abee675f58d (diff) |
Introduce variable ICONV_PREFIX at Mk/Uses/iconv.mk. The default for
pre 100043 is ${LOCALBASE} and /usr otherwise. Convert all ports to
new variable usage.
Approved by: portmgr (bapt, implicit)
Notes
Notes:
svn path=/head/; revision=326683
Diffstat (limited to 'devel/git')
-rw-r--r-- | devel/git/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/devel/git/Makefile b/devel/git/Makefile index ffedd0893cfe..bb26e800d127 100644 --- a/devel/git/Makefile +++ b/devel/git/Makefile @@ -257,8 +257,8 @@ PLIST_SUB+= PERLSUB="@comment " .if ${PORT_OPTIONS:MICONV} USES+= iconv MAKE_ENV+= NEEDS_LIBICONV=yes \ - ICONVDIR=${LOCALBASE} -CONFIGURE_ARGS+= --with-iconv=${LOCALBASE} + ICONVDIR=${ICONV_PREFIX} +CONFIGURE_ARGS+= --with-iconv=${ICONV_PREFIX} .else MAKE_ENV+= NO_ICONV=1 .endif |