diff options
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/bsd.port.mk | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk index 0b0ce9efc2dc..b112e98b657e 100644 --- a/Mk/bsd.port.mk +++ b/Mk/bsd.port.mk @@ -5254,15 +5254,12 @@ fake-pkg: create-manifest # Depend is generally meaningless for arbitrary ports, but if someone wants # one they can override this. This is just to catch people who've gotten into # the habit of typing `make depend all install' as a matter of course. -# -.if !target(depend) -depend: -.endif - # Same goes for tags -.if !target(tags) -tags: +.for _t in depend tags +.if !target(${_t}) +${_t}: .endif +.endfor .if !defined(NOPRECIOUSMAKEVARS) # These won't change, so we can pass them through the environment |