diff options
author | Jordan K. Hubbard <jkh@FreeBSD.org> | 1995-07-15 14:07:02 +0000 |
---|---|---|
committer | Jordan K. Hubbard <jkh@FreeBSD.org> | 1995-07-15 14:07:02 +0000 |
commit | 90bec1c3cf3110eea2d12cb4449bee4b836178ac (patch) | |
tree | 4265215b22a345344ce979219b797818f7f4b988 /share/mk | |
parent | 41e969f6cf86391190d9cef0d7a92bab4d03224a (diff) | |
download | src-90bec1c3cf3110eea2d12cb4449bee4b836178ac.tar.gz src-90bec1c3cf3110eea2d12cb4449bee4b836178ac.zip |
Notes
Diffstat (limited to 'share/mk')
-rw-r--r-- | share/mk/bsd.port.mk | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/share/mk/bsd.port.mk b/share/mk/bsd.port.mk index 680a7ffa0b2d..4b4e4a6807c5 100644 --- a/share/mk/bsd.port.mk +++ b/share/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 |