Date: Thu, 9 Sep 1999 23:50:40 -0400 (EDT) From: Garrett Wollman <wollman@khavrinen.lcs.mit.edu> To: FreeBSD-gnats-submit@freebsd.org Subject: bin/13676: usr.bin/more/Makefile is broken Message-ID: <199909100350.XAA24216@khavrinen.lcs.mit.edu>
next in thread | raw e-mail | index | archive | help
>Number: 13676 >Category: bin >Synopsis: usr.bin/more/Makefile is broken >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Sep 9 21:00:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Garrett Wollman >Release: FreeBSD 3.0-CURRENT i386 >Organization: MIT Lab for Computer Science >Environment: -current sources as of 8 September 1999 >Description: more's Makefile erroneously uses ${ECHO} >How-To-Repeat: cd /usr/src/usr.bin/more; make -s >Fix: Index: Makefile =================================================================== RCS file: /home/cvs/src/usr.bin/more/Makefile,v retrieving revision 1.8 diff -u -r1.8 Makefile --- Makefile 1999/09/03 22:31:13 1.8 +++ Makefile 1999/09/10 03:44:56 @@ -16,12 +16,12 @@ EXAMPLES= default.morerc less.morerc most.morerc defrc.h: default.morerc - @${ECHO} '/* ${.TARGET:T} auto-generated from ${.ALLSRC:T} */' \ + echo '/* ${.TARGET:T} auto-generated from ${.ALLSRC:T} */' \ > ${.TARGET} - @${ECHO} '#define DEFRC "\' >> ${.TARGET} + echo '#define DEFRC "\' >> ${.TARGET} sed -e 's/\\/\\\\/g' -e 's/\"/\\\"/g' -e 's/$$/\\n\\/' \ < ${.ALLSRC} >> ${.TARGET} - @${ECHO} \" >> ${.TARGET} + echo \" >> ${.TARGET} beforeinstall: ${INSTALL} ${COPY} -o ${SHAREOWN} -g ${SHAREGRP} -m ${SHAREMODE} \ >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199909100350.XAA24216>