diff options
author | sf <sf@FreeBSD.org> | 2001-05-26 06:07:35 +0800 |
---|---|---|
committer | sf <sf@FreeBSD.org> | 2001-05-26 06:07:35 +0800 |
commit | 66d2f1b1d08c7416ea1d51813ee85d34860befbc (patch) | |
tree | 318e4dce2aa0ea461322caaca36461702418cae1 | |
parent | f9e58cdc89a1b9c7565bfbeadbdf0d3132f4a9b6 (diff) | |
download | freebsd-ports-gnome-66d2f1b1d08c7416ea1d51813ee85d34860befbc.tar.gz freebsd-ports-gnome-66d2f1b1d08c7416ea1d51813ee85d34860befbc.tar.zst freebsd-ports-gnome-66d2f1b1d08c7416ea1d51813ee85d34860befbc.zip |
to find gettext, LOCALBASE should be passed instead of PREFIX.
Submitted by: roam, nectar
-rw-r--r-- | ftp/wget-devel/Makefile | 4 | ||||
-rw-r--r-- | ftp/wget/Makefile | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/ftp/wget-devel/Makefile b/ftp/wget-devel/Makefile index 7c059300623f..39f6f86958e9 100644 --- a/ftp/wget-devel/Makefile +++ b/ftp/wget-devel/Makefile @@ -26,8 +26,8 @@ LIB_DEPENDS= intl.1:${PORTSDIR}/devel/gettext USE_GMAKE= yes GNU_CONFIGURE= yes -CONFIGURE_ENV+= CPPFLAGS=-I${PREFIX}/include \ - LDFLAGS=-L${PREFIX}/lib +CONFIGURE_ENV+= CPPFLAGS=-I${LOCALBASE}/include \ + LDFLAGS=-L${LOCALBASE}/lib pre-build: @${RM} -rf ${WRKSRC}/doc/wget.info* diff --git a/ftp/wget/Makefile b/ftp/wget/Makefile index 7c059300623f..39f6f86958e9 100644 --- a/ftp/wget/Makefile +++ b/ftp/wget/Makefile @@ -26,8 +26,8 @@ LIB_DEPENDS= intl.1:${PORTSDIR}/devel/gettext USE_GMAKE= yes GNU_CONFIGURE= yes -CONFIGURE_ENV+= CPPFLAGS=-I${PREFIX}/include \ - LDFLAGS=-L${PREFIX}/lib +CONFIGURE_ENV+= CPPFLAGS=-I${LOCALBASE}/include \ + LDFLAGS=-L${LOCALBASE}/lib pre-build: @${RM} -rf ${WRKSRC}/doc/wget.info* |