mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 01:39:16 -04:00
Use single colons instead of double colons for "*-all" targets. I don't know
why I used double colons here before.
This commit is contained in:
parent
422138ae3b
commit
65fc5e28c7
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=40327
1 changed files with 2 additions and 2 deletions
4
Makefile
4
Makefile
|
@ -81,9 +81,9 @@ parallel: ${.CURDIR}/INDEX
|
|||
@false
|
||||
.endif
|
||||
.for dir in ${SUBDIR}
|
||||
@echo "all:: ${dir}-all"
|
||||
@echo "all: ${dir}-all"
|
||||
.endfor
|
||||
@cat ${.CURDIR}/INDEX | awk -F '|' '{me=$$1; here=$$2; bdep=$$8; rdep=$$9; split(here, tmp, "/"); if (bdep != "") { gsub("$$", ".tgz", bdep); gsub(" ", ".tgz ", bdep); } if (rdep != "") { gsub("$$", ".tgz", rdep); gsub(" ", ".tgz ", rdep); } print tmp[4] "-all:: " me ".tgz"; print me ": " me ".tgz"; print me ".tgz: " bdep " " rdep; printf("\t@/var/portbuild/scripts/pdispatch ${branch} /var/portbuild/scripts/portbuild %s.tgz %s", me, here); if (bdep != "") printf(" %s", bdep); if (rdep != "") printf(" %s", rdep); printf("\n")}'
|
||||
@cat ${.CURDIR}/INDEX | awk -F '|' '{me=$$1; here=$$2; bdep=$$8; rdep=$$9; split(here, tmp, "/"); if (bdep != "") { gsub("$$", ".tgz", bdep); gsub(" ", ".tgz ", bdep); } if (rdep != "") { gsub("$$", ".tgz", rdep); gsub(" ", ".tgz ", rdep); } print tmp[4] "-all: " me ".tgz"; print me ": " me ".tgz"; print me ".tgz: " bdep " " rdep; printf("\t@/var/portbuild/scripts/pdispatch ${branch} /var/portbuild/scripts/portbuild %s.tgz %s", me, here); if (bdep != "") printf(" %s", bdep); if (rdep != "") printf(" %s", rdep); printf("\n")}'
|
||||
|
||||
CVS?= cvs
|
||||
.if defined(SUPHOST)
|
||||
|
|
Loading…
Add table
Reference in a new issue