diff options
author | jkh <jkh@FreeBSD.org> | 1995-01-04 17:58:39 +0800 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1995-01-04 17:58:39 +0800 |
commit | 4f465c5a7b842d85466b48b3a77b3c577f619841 (patch) | |
tree | 4c9f4de3167942b17d524eb94d6e3e6acf8cf1cc | |
parent | b01f0259259bafcdb6cfc58844153fbf235083fb (diff) | |
download | freebsd-ports-graphics-4f465c5a7b842d85466b48b3a77b3c577f619841.tar.gz freebsd-ports-graphics-4f465c5a7b842d85466b48b3a77b3c577f619841.tar.zst freebsd-ports-graphics-4f465c5a7b842d85466b48b3a77b3c577f619841.zip |
Put depends before configure. No reason that I can see for putting it after,
and it breaks mule the way it is now.
-rw-r--r-- | Mk/bsd.port.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk index 4fab3b15499..1083a1cf4b4 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.92 1995/01/04 07:35:46 jkh Exp $ +# $Id: bsd.port.mk,v 1.93 1995/01/04 08:30:33 jkh Exp $ # # Please view me with 4 column tabs! @@ -370,7 +370,7 @@ pre-build: .endif .if !target(build) -build: configure depends ${BUILD_COOKIE} +build: depends configure ${BUILD_COOKIE} ${BUILD_COOKIE}: @echo "===> Building for ${DISTNAME}" |