summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorMarc Espie <espie@cvs.openbsd.org>2012-11-24 11:05:34 +0000
committerMarc Espie <espie@cvs.openbsd.org>2012-11-24 11:05:34 +0000
commitf7367c291c48ee579e75425bb85b41ef5472c03f (patch)
treedab107c60c3e8acc9f65a68ca2989c88800b12fe /usr.bin
parent0cd32023b11d1e6c79b2adc3ee67ef2546928426 (diff)
Don't output a . at the end of directory, as it is confusing.
okay beck@
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/make/job.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/make/job.c b/usr.bin/make/job.c
index a19e70a0e74..98532323edf 100644
--- a/usr.bin/make/job.c
+++ b/usr.bin/make/job.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: job.c,v 1.132 2012/10/23 20:32:21 espie Exp $ */
+/* $OpenBSD: job.c,v 1.133 2012/11/24 11:05:33 espie Exp $ */
/* $NetBSD: job.c,v 1.16 1996/11/06 17:59:08 christos Exp $ */
/*
@@ -347,7 +347,7 @@ internal_print_errors()
int dying;
if (!errorJobs)
- fprintf(stderr, "Stop in %s.\n", shortened_curdir());
+ fprintf(stderr, "Stop in %s\n", shortened_curdir());
for (j = errorJobs; j != NULL; j = j->next)
may_remove_target(j);