diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2002-12-04 18:03:35 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2002-12-04 18:03:35 +0000 |
commit | 768b71b22739ec1aab0f4162be4d0365f1363a38 (patch) | |
tree | 4778c1372dc4a2b531996c483bb73a587220a44b | |
parent | Okay, this time the build should be fixed on -CURRENT. (diff) |
I committed from the wrong tree, and the patch had a missing
INDEX -> ${INDEXFILE} conversion.
Notes
Notes:
svn path=/head/; revision=71368
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -75,7 +75,7 @@ ${.CURDIR}/${INDEXFILE}: @sed -e 's./..g' ${.CURDIR}/${INDEXFILE} | \ sort -t '|' +1 -2 | \ sed -e 's../.g' > ${.CURDIR}/${INDEXFILE}.tmp; \ - mv -f ${.CURDIR}/INDEX.tmp ${.CURDIR}/${INDEXFILE} + mv -f ${.CURDIR}/${INDEXFILE}.tmp ${.CURDIR}/${INDEXFILE} .endif @echo " Done." |