diff options
author | FUJISHIMA Satsuki <sf@FreeBSD.org> | 2001-05-25 22:07:35 +0000 |
---|---|---|
committer | FUJISHIMA Satsuki <sf@FreeBSD.org> | 2001-05-25 22:07:35 +0000 |
commit | b6f8e062ded081cdd15a500c62552dc513c7b560 (patch) | |
tree | a7396c08baa9377c818ef8b55d9d728c9bdd1d20 /ftp | |
parent | 3edca2122ee5080eb67cf94cbb002d65eb5cd8bb (diff) | |
download | freebsd-ports-b6f8e062ded081cdd15a500c62552dc513c7b560.zip |
to find gettext, LOCALBASE should be passed instead of PREFIX.
Submitted by: roam, nectar
Diffstat (limited to 'ftp')
-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* |