diff options
author | jkh <jkh@FreeBSD.org> | 1995-07-15 22:07:02 +0800 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1995-07-15 22:07:02 +0800 |
commit | d8344a5f4cec9e68c30df058df4f2361312f33a9 (patch) | |
tree | 59e7eea110744ed70d6d45b8d7e87463b5f2f3b9 /Mk | |
parent | 5556eba465582550add2a3a475de6651461e2710 (diff) | |
download | freebsd-ports-gnome-d8344a5f4cec9e68c30df058df4f2361312f33a9.tar.gz freebsd-ports-gnome-d8344a5f4cec9e68c30df058df4f2361312f33a9.tar.zst freebsd-ports-gnome-d8344a5f4cec9e68c30df058df4f2361312f33a9.zip |
A regrettable hack to allow a port to say that it doesn't want its Makefiles
made after the xmkmf run.
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/bsd.port.mk | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk index 680a7ffa0b2d..4b4e4a6807c5 100644 --- a/Mk/bsd.port.mk +++ b/Mk/bsd.port.mk @@ -3,7 +3,7 @@ # bsd.port.mk - 940820 Jordan K. Hubbard. # This file is in the public domain. # -# $Id: bsd.port.mk,v 1.170 1995/06/26 07:06:59 asami Exp $ +# $Id: bsd.port.mk,v 1.171 1995/07/11 02:15:35 asami Exp $ # # Please view me with 4 column tabs! @@ -576,6 +576,9 @@ do-configure: ./${CONFIGURE_SCRIPT} ${CONFIGURE_ARGS}) .endif .if defined(USE_IMAKE) +.if defined(X_NO_MAKE_MAKEFILES) + @(cd ${WRKSRC}; ${XMKMF}) +.else .if defined(USE_GMAKE) @(cd ${WRKSRC}; ${XMKMF} && ${GMAKE} Makefiles) .else @@ -583,6 +586,7 @@ do-configure: .endif .endif .endif +.endif # Build |