diff options
author | bde <bde@FreeBSD.org> | 1994-08-28 17:00:54 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1994-08-28 17:00:54 +0000 |
commit | 6a06e1d77ab8206db14ddfbf94828d01468dbb52 (patch) | |
tree | 139e276b1016e6fb6959ac4336a4df3f71d33fa0 | |
parent | d59fcde5ba8df9e7fdac738914758df851827a60 (diff) | |
download | FreeBSD-src-6a06e1d77ab8206db14ddfbf94828d01468dbb52.zip FreeBSD-src-6a06e1d77ab8206db14ddfbf94828d01468dbb52.tar.gz |
Fix it to find the sources if there is an obj directory. Lots of the old
doc Makefiles are broken in the same way. This should be fixed centrally.
-rw-r--r-- | share/doc/papers/beyond4.3/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/doc/papers/beyond4.3/Makefile b/share/doc/papers/beyond4.3/Makefile index 02150fd..bb30a1a 100644 --- a/share/doc/papers/beyond4.3/Makefile +++ b/share/doc/papers/beyond4.3/Makefile @@ -5,6 +5,6 @@ DOC= beyond43 MACROS= -ms paper.ps: ${SRCS} - ${TBL} ${SRCS} | ${ROFF} > ${.TARGET} + ${TBL} ${.CURDIR}/${SRCS} | ${ROFF} > ${.TARGET} .include <bsd.doc.mk> |