summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorru <ru@FreeBSD.org>2003-09-07 12:59:22 +0000
committerru <ru@FreeBSD.org>2003-09-07 12:59:22 +0000
commit158b38338d9a9808698eb6a5e8b8740c6b7b098c (patch)
treeeaa3793b7180a7801af3318959ad0f15010c5a43
parentdf4589455a04590956da365e9faf99e834dfe63f (diff)
downloadFreeBSD-src-158b38338d9a9808698eb6a5e8b8740c6b7b098c.zip
FreeBSD-src-158b38338d9a9808698eb6a5e8b8740c6b7b098c.tar.gz
Implement sed(1) commands using the make(1)'s RE variable modifier.
(This almost eliminates the need of a sed(1) during installworld.)
-rw-r--r--share/mk/bsd.man.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/share/mk/bsd.man.mk b/share/mk/bsd.man.mk
index 9cac378..4a06c58 100644
--- a/share/mk/bsd.man.mk
+++ b/share/mk/bsd.man.mk
@@ -173,7 +173,7 @@ _maninstall: ${MAN}
.endif
.endfor
.else
- @set `echo ${.ALLSRC} " " | sed 's/\.\([^.]*\) /.\1 \1 /g'`; \
+ @set ${.ALLSRC:C/\.([^.]*)$/.\1 \1/}; \
while : ; do \
case $$# in \
0) break;; \
@@ -204,7 +204,7 @@ _maninstall: ${MAN}
.endif
.if !defined(NOMLINKS) && defined(MLINKS) && !empty(MLINKS)
- @set `echo ${MLINKS} " " | sed 's/\.\([^.]*\) /.\1 \1 /g'`; \
+ @set ${MLINKS:C/\.([^.]*)$/.\1 \1/}; \
while : ; do \
case $$# in \
0) break;; \
@@ -219,7 +219,7 @@ _maninstall: ${MAN}
ln $${l}${ZEXT} $${t}${ZEXT}; \
done
.if defined(MANBUILDCAT) && !empty(MANBUILDCAT)
- @set `echo ${MLINKS} " " | sed 's/\.\([^.]*\) /.\1 \1 /g'`; \
+ @set ${MLINKS:C/\.([^.]*)$/.\1 \1/}; \
while : ; do \
case $$# in \
0) break;; \
OpenPOWER on IntegriCloud