openbsd-ports/infrastructure/mk
espie b2d1296094 Passing flavors along while computing dependencies is a bad idea,
use _DEPEND_THRU uniformously.

Note that this actually needs something very similar to what is used
in bsd.port.subdir.mk to work.

In particular `default' FLAVORs not being empty is probably a bad idea,
and won't work uniformously.

The right way to set a default flavor is probably to:
- not have empty as a valid flavor.
- do things in two steps:
FLAVOR?=default
.if empty(FLAVOR)
FLAVOR:=default
.endif

so that flavor always gets set correctly.
2000-04-22 19:20:12 +00:00
..
bsd.port.mk Passing flavors along while computing dependencies is a bad idea, 2000-04-22 19:20:12 +00:00
bsd.port.subdir.mk Don't add FLAVOR='' to ports without flavor, let default be picked up 2000-04-16 20:10:21 +00:00