From af8dd62b9a121e1e7fe0ae098c99a24d107d143b Mon Sep 17 00:00:00 2001 From: "Jordan K. Hubbard" Date: Sat, 14 Jan 1995 19:48:49 +0000 Subject: [PATCH] The enclosed patch is a cosmetic change to bsd.prog.mk. When a program directory has subdirectories, make now prints "===> dir/subdir" instead of "===> subdir". This is modeled after the rules contained in bsd.subdir.mk. Submitted by: Remy Card --- share/mk/bsd.prog.mk | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/share/mk/bsd.prog.mk b/share/mk/bsd.prog.mk index e922d3443d92..9b7dddbef677 100644 --- a/share/mk/bsd.prog.mk +++ b/share/mk/bsd.prog.mk @@ -1,5 +1,5 @@ # from: @(#)bsd.prog.mk 5.26 (Berkeley) 6/25/91 -# $Id: bsd.prog.mk,v 1.15 1994/12/28 03:50:58 ache Exp $ +# $Id: bsd.prog.mk,v 1.16 1995/01/14 07:51:09 jkh Exp $ .if exists(${.CURDIR}/../Makefile.inc) .include "${.CURDIR}/../Makefile.inc" @@ -113,13 +113,13 @@ MAN1= ${PROG}.1 _PROGSUBDIR: .USE .if defined(SUBDIR) && !empty(SUBDIR) @for entry in ${SUBDIR}; do \ - (${ECHODIR} "===> $$entry"; \ + (${ECHODIR} "===> ${DIRPRFX}$$entry"; \ if test -d ${.CURDIR}/$${entry}.${MACHINE}; then \ cd ${.CURDIR}/$${entry}.${MACHINE}; \ else \ cd ${.CURDIR}/$${entry}; \ fi; \ - ${MAKE} ${.TARGET:S/realinstall/install/:S/.depend/depend/}); \ + ${MAKE} ${.TARGET:S/realinstall/install/:S/.depend/depend/} DIRPRFX=${DIRPRFX}$$entry/); \ done .endif