diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 1999-10-25 08:08:32 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 1999-10-25 08:08:32 +0000 |
commit | 7fb0cc2cf823edb3a4f34ede40a6b9d47bdc4a95 (patch) | |
tree | 98457b364c60f9b33a48e20e16c5c0bf12705590 /net | |
parent | Update to 0.5.5. (diff) |
Use the proper $$ which gives a single literal `$' in a Makefile rather
than `\$' which is proper for a shell script, which this isn't (even it if
they are shell commands).
Notes
Notes:
svn path=/head/; revision=22625
Diffstat (limited to 'net')
-rw-r--r-- | net/tdetect/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/tdetect/Makefile b/net/tdetect/Makefile index 55bacf9e3d45..72018a1293d4 100644 --- a/net/tdetect/Makefile +++ b/net/tdetect/Makefile @@ -33,7 +33,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'; \ |