mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
Do not use perl where sed is more than adequate.
This commit is contained in:
parent
b7c8cbabf9
commit
c3fa6e4e46
1 changed files with 4 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue