diff options
author | obrien <obrien@FreeBSD.org> | 2002-04-13 23:53:36 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2002-04-13 23:53:36 +0000 |
commit | d22011437e584398f8e4d4100bb74aa950f00608 (patch) | |
tree | 1b8dd63879ac432c7a22905121d44e4c8dbec86e /sbin | |
parent | 3fcded0f045f9bc1f8e91a0e5d7371a3a385726d (diff) | |
download | FreeBSD-src-d22011437e584398f8e4d4100bb74aa950f00608.zip FreeBSD-src-d22011437e584398f8e4d4100bb74aa950f00608.tar.gz |
Do not use perl where sed is more than adequate.
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/dhclient/Makefile.inc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sbin/dhclient/Makefile.inc b/sbin/dhclient/Makefile.inc index 6295c4b..c707a8f 100644 --- a/sbin/dhclient/Makefile.inc +++ b/sbin/dhclient/Makefile.inc @@ -10,7 +10,10 @@ RUNDIR= /var/run ETCDIR= /etc DBDIR= /var/db -MANFILTER= perl -pe 's\#DBDIR\#${DBDIR}\#g;s\#ETCDIR\#${ETCDIR}\#g;s\#CLIENTBINDIR\#${CLIENTBINDIR}\#g;s\#RUNDIR\#${RUNDIR}\#g;' +MANFILTER= sed -e 's|DBDIR|${DBDIR}|g' \ + -e 's|ETCDIR|${ETCDIR}|g' \ + -e 's|CLIENTBINDIR|${CLIENTBINDIR}|g' \ + -e 's|RUNDIR|${RUNDIR}|g' .if exists(${.OBJDIR}/../common) LIBDHCP= ${.OBJDIR}/../common/libdhcp.a |