diff options
author | garga <garga@FreeBSD.org> | 2006-07-03 10:43:49 +0000 |
---|---|---|
committer | garga <garga@FreeBSD.org> | 2006-07-03 10:43:49 +0000 |
commit | 44e41bf42a1ef1e1e44b5c6d8c6c8ded396898e8 (patch) | |
tree | d86845616fefc14d609187980e255edfb55a7318 /editors | |
parent | c213cf7c33050e4a733d127a83bfc5e7f4be1c0e (diff) | |
download | FreeBSD-ports-44e41bf42a1ef1e1e44b5c6d8c6c8ded396898e8.zip FreeBSD-ports-44e41bf42a1ef1e1e44b5c6d8c6c8ded396898e8.tar.gz |
Make it respect ${CC} and ${CFLAGS}
PR: ports/99656
Submitted by: maintainer
Diffstat (limited to 'editors')
-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 3596549..1e26eb3 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: |