diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2003-02-24 03:54:41 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2003-02-24 03:54:41 +0000 |
commit | f26c3131fea103b313c5c35fffab1df7ecdec12c (patch) | |
tree | 7440fac5df228256ae54ecd222fd001d6c830a8f | |
parent | Point dependencies on net/openldap2 to net/openldap20 (diff) |
Correct the bug in 'make index' that failed to substitute back the
canonical PREFIX locations for /nonexistent*
Notes
Notes:
svn path=/head/; revision=76348
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -70,7 +70,7 @@ ${.CURDIR}/${INDEXFILE}: export X11BASE=/nonexistentx; \ cd ${.CURDIR} && make describe ECHO_MSG="echo > /dev/null" | \ perl ${.CURDIR}/Tools/make_index | \ - sed -e 's/ */ /g' -e 's/| */|/g' -e 's/ *|/|/g' -e "s,${LOCALBASE},/usr/local," -e "s,${X11BASE},/usr/X11R6," > ${INDEXFILE} + sed -e 's/ */ /g' -e 's/| */|/g' -e 's/ *|/|/g' -e "s,$${LOCALBASE},/usr/local," -e "s,$${X11BASE},/usr/X11R6," > ${INDEXFILE} .if !defined(INDEX_NOSORT) @sed -e 's./..g' ${.CURDIR}/${INDEXFILE} | \ sort -t '|' +1 -2 | \ |