diff options
author | bapt <bapt@FreeBSD.org> | 2013-07-11 05:28:56 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2013-07-11 05:28:56 +0800 |
commit | 89fa4b30769741751f355514c3275dfa94011df4 (patch) | |
tree | 54a54dca395db82704b22a4ff9ba1391e9b102c6 /math | |
parent | 89f391bff5b2a0c7accd7eeb2e0e2949354200b4 (diff) | |
download | freebsd-ports-gnome-89fa4b30769741751f355514c3275dfa94011df4.tar.gz freebsd-ports-gnome-89fa4b30769741751f355514c3275dfa94011df4.tar.zst freebsd-ports-gnome-89fa4b30769741751f355514c3275dfa94011df4.zip |
Fix PORTSDIR not already defined by using relative path
Diffstat (limited to 'math')
-rw-r--r-- | math/pure-mpfr/Makefile | 2 | ||||
-rw-r--r-- | math/pure-rational/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/math/pure-mpfr/Makefile b/math/pure-mpfr/Makefile index c90f7b29b662..2770f416f0f6 100644 --- a/math/pure-mpfr/Makefile +++ b/math/pure-mpfr/Makefile @@ -15,5 +15,5 @@ PLIST_FILES= lib/pure/mpfr.pure \ MAKE_ARGS+= libdir="${PREFIX}/lib" -.include "${PORTSDIR}/lang/pure/bsd.pure.mk" +.include "${.CURDIR}/../../lang/pure/bsd.pure.mk" .include <bsd.port.mk> diff --git a/math/pure-rational/Makefile b/math/pure-rational/Makefile index bc0ea1098cbf..cbc2a3cc7d44 100644 --- a/math/pure-rational/Makefile +++ b/math/pure-rational/Makefile @@ -17,5 +17,5 @@ NO_PURE_EXAMPLES= yes PLIST_FILES= lib/pure/rational.pure \ lib/pure/rat_interval.pure -.include "${PORTSDIR}/lang/pure/bsd.pure.mk" +.include "${.CURDIR}/../../lang/pure/bsd.pure.mk" .include <bsd.port.mk> |