diff options
author | adrian <adrian@FreeBSD.org> | 2010-11-16 22:23:20 +0000 |
---|---|---|
committer | adrian <adrian@FreeBSD.org> | 2010-11-16 22:23:20 +0000 |
commit | 908df7b5dde2c83ff2b53f15cf48b0b1ead26706 (patch) | |
tree | 03ce23207cabf48d43403e4f856774db595b82e1 /share/mk/bsd.crunchgen.mk | |
parent | b4af64bb45aacd5acfd33da3e9a15a4b1627984d (diff) | |
download | FreeBSD-src-908df7b5dde2c83ff2b53f15cf48b0b1ead26706.zip FreeBSD-src-908df7b5dde2c83ff2b53f15cf48b0b1ead26706.tar.gz |
Re-enable generating links.
Diffstat (limited to 'share/mk/bsd.crunchgen.mk')
-rw-r--r-- | share/mk/bsd.crunchgen.mk | 19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/share/mk/bsd.crunchgen.mk b/share/mk/bsd.crunchgen.mk index 565b112..5ebfd94 100644 --- a/share/mk/bsd.crunchgen.mk +++ b/share/mk/bsd.crunchgen.mk @@ -51,17 +51,14 @@ $(OUTPUTS): $(CRUNCH_SRCDIR_${P})/Makefile .else $(OUTPUTS): $(.CURDIR)/../../$(D)/$(P)/Makefile .endif -# Disable building links for bsdbox - whatever is installing the binaries into -# the embedded system should (for now) do the linking there. This may change -# in the future. -adrian -#.ifndef CRUNCH_SUPPRESS_LINK_${P} -#LINKS+= $(BINDIR)/$(PROG) $(BINDIR)/$(P) -#.endif -#.for A in $(CRUNCH_ALIAS_$(P)) -#.ifndef CRUNCH_SUPPRESS_LINK_${A} -#LINKS+= $(BINDIR)/$(PROG) $(BINDIR)/$(A) -#.endif -#.endfor +.ifndef CRUNCH_SUPPRESS_LINK_${P} +LINKS+= $(BINDIR)/$(PROG) $(BINDIR)/$(P) +.endif +.for A in $(CRUNCH_ALIAS_$(P)) +.ifndef CRUNCH_SUPPRESS_LINK_${A} +LINKS+= $(BINDIR)/$(PROG) $(BINDIR)/$(A) +.endif +.endfor .endfor .endfor |