View | Details | Raw Unified | Return to bug 4928
Collapse All | Expand All

(-)/home/./joes/Makefile (+20 lines)
Lines 59-61 Link Here
59
.else
59
.else
60
	@grep -i ${key} ${.CURDIR}/INDEX | awk -F\| '{ printf("Port:\t%s\nPath:\t%s\nInfo:\t%s\nMaint:\t%s\nIndex:\t%s\nB-deps:\t%s\nR-deps:\t%s\n\n", $$1, $$2, $$4, $$6, $$7, $$8, $$9); }'
60
	@grep -i ${key} ${.CURDIR}/INDEX | awk -F\| '{ printf("Port:\t%s\nPath:\t%s\nInfo:\t%s\nMaint:\t%s\nIndex:\t%s\nB-deps:\t%s\nR-deps:\t%s\n\n", $$1, $$2, $$4, $$6, $$7, $$8, $$9); }'
61
.endif
61
.endif
62
63
#
64
# update
65
#
66
# Update the ports tree, by running sup and/or running cvs to update to the
67
# latest copy.
68
#
69
update:
70
.if defined(SUP_UPDATE)
71
	@echo "--------------------------------------------------------------"
72
	@echo "Running sup"
73
	@echo "--------------------------------------------------------------"
74
	@${SUP} ${SUPFLAGS} ${PORTSSUPFILE}
75
.endif
76
.if defined(CVS_UPDATE)
77
	@echo "--------------------------------------------------------------"
78
	@echo "Updating /usr/ports from cvs repository" ${CVSROOT}
79
	@echo "--------------------------------------------------------------"
80
	cd ${.CURDIR} && cvs -q update -P -d
81
.endif

Return to bug 4928