diff options
author | Renato Botelho <garga@FreeBSD.org> | 2006-07-03 10:43:49 +0000 |
---|---|---|
committer | Renato Botelho <garga@FreeBSD.org> | 2006-07-03 10:43:49 +0000 |
commit | 5105780a5635f01d48cfd054fd4b4fa58767c711 (patch) | |
tree | 4b399302421f9c03d2b32068f73fd838fbd52da3 /editors/wily | |
parent | - Fix DISTNAME after repocopy [1] (diff) |
Make it respect ${CC} and ${CFLAGS}
PR: ports/99656
Submitted by: maintainer
Diffstat (limited to 'editors/wily')
-rw-r--r-- | editors/wily/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/editors/wily/Makefile b/editors/wily/Makefile index 359654951271..1e26eb31aa46 100644 --- a/editors/wily/Makefile +++ b/editors/wily/Makefile @@ -45,7 +45,9 @@ post-patch: # Run the configure script in the tools directory. post-configure: @${RM} ${WRKSRC}/tools/win/config.cache - cd ${WRKSRC}/tools/win; ./configure --prefix=${PREFIX} + cd ${WRKSRC}/tools/win && \ + ${SETENV} CC=${CC} "CFLAGS=${CFLAGS}" \ + ${SH} ./configure --prefix=${PREFIX} # The default Wily makefile does not install any documentation. Rectify. post-install: |