diff options
author | will <will@FreeBSD.org> | 2000-09-21 03:07:00 +0800 |
---|---|---|
committer | will <will@FreeBSD.org> | 2000-09-21 03:07:00 +0800 |
commit | 52dd1a0b5990d86223a5df33eda1746002ff91f6 (patch) | |
tree | 327094159fc67c3530c415ab5778bb4c721dcfad /converters | |
parent | 9ef4e062e6710df261a97d30b1d46dc5fee4d865 (diff) | |
download | freebsd-ports-gnome-52dd1a0b5990d86223a5df33eda1746002ff91f6.tar.gz freebsd-ports-gnome-52dd1a0b5990d86223a5df33eda1746002ff91f6.tar.zst freebsd-ports-gnome-52dd1a0b5990d86223a5df33eda1746002ff91f6.zip |
Make this port respect CC/CFLAGS. I discovered this discrepancy while
reviewing converters/p5-Unicode-Map8. The Porter's Handbook should
probably note that perl module ports that compile something should have
a diff similar to this one.
Diffstat (limited to 'converters')
-rw-r--r-- | converters/p5-Unicode-String/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/converters/p5-Unicode-String/Makefile b/converters/p5-Unicode-String/Makefile index 54ee6c510695..07f4df65cc19 100644 --- a/converters/p5-Unicode-String/Makefile +++ b/converters/p5-Unicode-String/Makefile @@ -23,6 +23,7 @@ MAN3= Unicode::CharName.3 Unicode::String.3 MAN3PREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} do-configure: - @cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${PERL5} Makefile.PL + cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${PERL5} Makefile.PL \ + CC="${CC}" CCFLAGS="${CFLAGS}" .include <bsd.port.mk> |