diff options
author | olgeni <olgeni@FreeBSD.org> | 2015-07-03 05:01:40 +0800 |
---|---|---|
committer | olgeni <olgeni@FreeBSD.org> | 2015-07-03 05:01:40 +0800 |
commit | b988aac0b79fe658c1c13e87be4442faecd4fdbc (patch) | |
tree | 0961e0bae854483ce11083da589d15bd806ada0b /databases | |
parent | f855973c020232eab5ed7399c583470e7c1b8ef9 (diff) | |
download | freebsd-ports-gnome-b988aac0b79fe658c1c13e87be4442faecd4fdbc.tar.gz freebsd-ports-gnome-b988aac0b79fe658c1c13e87be4442faecd4fdbc.tar.zst freebsd-ports-gnome-b988aac0b79fe658c1c13e87be4442faecd4fdbc.zip |
Fix include syntax to avoid using PORTSDIR (defined by bsd.port.mk).
Submitted by: cperciva
Diffstat (limited to 'databases')
-rw-r--r-- | databases/elixir-ecto/Makefile | 2 | ||||
-rw-r--r-- | databases/elixir-mariaex/Makefile | 2 | ||||
-rw-r--r-- | databases/elixir-postgrex/Makefile | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/databases/elixir-ecto/Makefile b/databases/elixir-ecto/Makefile index 6a71ea315e5a..55e17608b1b3 100644 --- a/databases/elixir-ecto/Makefile +++ b/databases/elixir-ecto/Makefile @@ -19,5 +19,5 @@ MIX_BUILD_DEPS= devel/elixir-decimal \ devel/erlang-poolboy MIX_RUN_DEPS:= ${MIX_BUILD_DEPS} -.include "${PORTSDIR}/lang/elixir/bsd.elixir.mk" +.include "${.CURDIR}/../../lang/elixir/bsd.elixir.mk" .include <bsd.port.mk> diff --git a/databases/elixir-mariaex/Makefile b/databases/elixir-mariaex/Makefile index 12adaf41c374..ecba74ba7e64 100644 --- a/databases/elixir-mariaex/Makefile +++ b/databases/elixir-mariaex/Makefile @@ -17,5 +17,5 @@ GH_ACCOUNT= xerions MIX_BUILD_DEPS= devel/elixir-decimal MIX_RUN_DEPS:= ${MIX_BUILD_DEPS} -.include "${PORTSDIR}/lang/elixir/bsd.elixir.mk" +.include "${.CURDIR}/../../lang/elixir/bsd.elixir.mk" .include <bsd.port.mk> diff --git a/databases/elixir-postgrex/Makefile b/databases/elixir-postgrex/Makefile index d63904ab972e..51d6e95fca9d 100644 --- a/databases/elixir-postgrex/Makefile +++ b/databases/elixir-postgrex/Makefile @@ -18,5 +18,5 @@ MIX_BUILD_NAME= shared MIX_BUILD_DEPS= devel/elixir-decimal MIX_RUN_DEPS:= ${MIX_BUILD_DEPS} -.include "${PORTSDIR}/lang/elixir/bsd.elixir.mk" +.include "${.CURDIR}/../../lang/elixir/bsd.elixir.mk" .include <bsd.port.mk> |