diff options
author | vd <vd@FreeBSD.org> | 2006-02-17 15:34:16 +0000 |
---|---|---|
committer | vd <vd@FreeBSD.org> | 2006-02-17 15:34:16 +0000 |
commit | fa0e0f6c0e91efc422431728de107a9f48a9ffb4 (patch) | |
tree | af2905ed918481e92ff73ed24bdb14a09652efcb /math | |
parent | 20ca69dc8ddb8a2121e1862d8d1ff822859dff14 (diff) | |
download | FreeBSD-ports-fa0e0f6c0e91efc422431728de107a9f48a9ffb4.zip FreeBSD-ports-fa0e0f6c0e91efc422431728de107a9f48a9ffb4.tar.gz |
Use the correct .include statement
.include <Makefile.inc> causes errors when make is not invoked from
port's directory on RELENG_4
PR: ports/92669
Submitted by: vd
Approved by: garga (mentor, implicitly), maintainer timeout
Diffstat (limited to 'math')
-rw-r--r-- | math/vecfem/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/math/vecfem/Makefile b/math/vecfem/Makefile index 6f4e0c1..cacf0c2 100644 --- a/math/vecfem/Makefile +++ b/math/vecfem/Makefile @@ -34,5 +34,5 @@ pre-fetch: @${ECHO_MSG} "Building ${PORTNAME}-${PORTVERSION} with MPI support" .endif -.include <Makefile.inc> +.include "${.CURDIR}/Makefile.inc" .include <bsd.port.mk> |