Install ${EXTRAS} from ${.OBJDIR}, not from ${.CURDIR}. Previously it

would not work if make (after)install was issued after explicit make obj.
This commit is contained in:
Sergey Kandaurov 2012-05-25 07:52:36 +00:00
parent 9f4708efd5
commit b9e4bf675c
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/head/; revision=38884

View file

@ -34,7 +34,7 @@ ${EXTRAS}:
afterinstall:
.for entry in ${EXTRAS}
${INSTALL_DOCS} ${.CURDIR}/${entry} ${DESTDIR}
${INSTALL_DOCS} ${.OBJDIR}/${entry} ${DESTDIR}
.endfor
DOC_PREFIX?= ${.CURDIR}/../../..