diff options
author | mharo <mharo@FreeBSD.org> | 1999-08-28 06:30:39 +0800 |
---|---|---|
committer | mharo <mharo@FreeBSD.org> | 1999-08-28 06:30:39 +0800 |
commit | c703665fd61c774a392a6785e6b1c49569072bf1 (patch) | |
tree | fadaf059519c61c85fed9e8be59d5c262720f5d3 /net/tdetect | |
parent | b6234e33d2dcb7767ac29adb112187db9036c665 (diff) | |
download | freebsd-ports-gnome-c703665fd61c774a392a6785e6b1c49569072bf1.tar.gz freebsd-ports-gnome-c703665fd61c774a392a6785e6b1c49569072bf1.tar.zst freebsd-ports-gnome-c703665fd61c774a392a6785e6b1c49569072bf1.zip |
echo -> ${ECHO} or ${ECHO_MSG} and in some cases, move echo stuff
to pkg/MESSAGE and use ${CAT} ${PKGMESSAGE}
Diffstat (limited to 'net/tdetect')
-rw-r--r-- | net/tdetect/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/tdetect/Makefile b/net/tdetect/Makefile index 56d530125368..c101fb711a31 100644 --- a/net/tdetect/Makefile +++ b/net/tdetect/Makefile @@ -4,7 +4,7 @@ # Date created: Sun Jan 31, 1997 # Whom: shipley@dis.org # -# $Id: Makefile,v 1.2 1999/07/04 19:18:49 obrien Exp $ +# $Id: Makefile,v 1.3 1999/08/22 18:59:33 mharo Exp $ # DISTNAME= tdetect-0.2 @@ -27,7 +27,7 @@ post-install: ${ECHO} "Installing ${PREFIX}/etc/rc.d/tdetect.sh startup file."; \ ${ECHO} "#!/bin/sh" > ${PREFIX}/etc/rc.d/tdetect.sh; \ ${ECHO} "ETHERNETDEV=ed0" >> ${PREFIX}/etc/rc.d/tdetect.sh; \ - ${ECHO} '[ -x ${PREFIX}/sbin/tdetect ] && ${PREFIX}/sbin/tdetect \$ETHERNETDEV && echo -n " tdetect"' >> ${PREFIX}/etc/rc.d/tdetect.sh; \ + ${ECHO} '[ -x ${PREFIX}/sbin/tdetect ] && ${PREFIX}/sbin/tdetect \$ETHERNETDEV && ${ECHO} -n " tdetect"' >> ${PREFIX}/etc/rc.d/tdetect.sh; \ ${CHMOD} 750 ${PREFIX}/etc/rc.d/tdetect.sh; \ ${ECHO} ''; \ ${ECHO} 'IMPORTANT edit ${PREFIX}/etc/rc.d/tdetect.sh and set "ETHERNETDEV" to'; \ |