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:
parent
9f4708efd5
commit
b9e4bf675c
Notes:
svn2git
2020-12-08 03:00:23 +00:00
svn path=/head/; revision=38884
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ ${EXTRAS}:
|
|||
|
||||
afterinstall:
|
||||
.for entry in ${EXTRAS}
|
||||
${INSTALL_DOCS} ${.CURDIR}/${entry} ${DESTDIR}
|
||||
${INSTALL_DOCS} ${.OBJDIR}/${entry} ${DESTDIR}
|
||||
.endfor
|
||||
|
||||
DOC_PREFIX?= ${.CURDIR}/../../..
|
||||
|
|
Loading…
Reference in a new issue