From c3fa6e4e46f0e58da6240f77e71952214397380f Mon Sep 17 00:00:00 2001 From: "David E. O'Brien" Date: Sat, 13 Apr 2002 23:53:36 +0000 Subject: [PATCH] Do not use perl where sed is more than adequate. --- sbin/dhclient/Makefile.inc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/sbin/dhclient/Makefile.inc b/sbin/dhclient/Makefile.inc index 6295c4bed2e2..c707a8ff38cc 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