1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-30 01:15:52 +00:00

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).
This commit is contained in:
David E. O'Brien 1999-10-25 08:08:32 +00:00
parent 939a311d85
commit 7fb0cc2cf8
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=22625

View File

@ -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'; \