diff options
author | asami <asami@FreeBSD.org> | 2001-03-25 01:50:40 +0000 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 2001-03-25 01:50:40 +0000 |
commit | 8bdf4598bc261b231f381f06e4e9888cc3b13557 (patch) | |
tree | dfa6451984e8492bcd8467489e7444b3b1417609 /Makefile | |
parent | 7ea770a2c760cc2dc08ba488f4c60cfceae0b810 (diff) | |
download | FreeBSD-ports-8bdf4598bc261b231f381f06e4e9888cc3b13557.zip FreeBSD-ports-8bdf4598bc261b231f381f06e4e9888cc3b13557.tar.gz |
Use single colons instead of double colons for "*-all" targets. I don't know
why I used double colons here before.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) |