diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1995-04-17 06:28:15 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1995-04-17 06:28:15 +0000 |
commit | cc70b7d6519dea2dd00de21323c3896f83da89a0 (patch) | |
tree | 1d892b81080843bb53ecc3dd302cdc52b9899d44 /Mk/bsd.port.mk | |
parent | Added cern_linemode. (diff) |
"all" now depends on "build", not "extract configure build".
Since "build" depends on "configure", which depends on "patch", etc.,
this shouldn't disrupt any Makefile that doesn't break the dependency
chain.
The old behavior was very annoying because when I did a "make -k",
it would still try to go configure and build even if the extraction
failed.
Diffstat (limited to 'Mk/bsd.port.mk')
-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 471153849b62..a3a8aae4de5e 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.137 1995/04/10 08:09:21 jkh Exp $ +# $Id: bsd.port.mk,v 1.138 1995/04/15 23:56:29 asami Exp $ # # Please view me with 4 column tabs! @@ -316,7 +316,7 @@ package: .endif .if !target(all) -all: extract configure build +all: build .endif .if !target(is_depended) |