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 /www | |
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 'www')
-rw-r--r-- | www/elixir-maru/Makefile | 2 | ||||
-rw-r--r-- | www/elixir-phoenix/Makefile | 2 | ||||
-rw-r--r-- | www/elixir-phoenix_ecto/Makefile | 2 | ||||
-rw-r--r-- | www/elixir-phoenix_html/Makefile | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/www/elixir-maru/Makefile b/www/elixir-maru/Makefile index c34e58202acf..a0a07594b37f 100644 --- a/www/elixir-maru/Makefile +++ b/www/elixir-maru/Makefile @@ -20,5 +20,5 @@ MIX_BUILD_DEPS= devel/elixir-plug \ MIX_RUN_DEPS:= ${MIX_BUILD_DEPS} MIX_DOC_DIRS= guide -.include "${PORTSDIR}/lang/elixir/bsd.elixir.mk" +.include "${.CURDIR}/../../lang/elixir/bsd.elixir.mk" .include <bsd.port.mk> diff --git a/www/elixir-phoenix/Makefile b/www/elixir-phoenix/Makefile index 4510173771f7..4fb3795551b7 100644 --- a/www/elixir-phoenix/Makefile +++ b/www/elixir-phoenix/Makefile @@ -29,5 +29,5 @@ MIX_RUN_DEPS:= ${MIX_BUILD_DEPS} MIX_EXTRA_APPS= installer MIX_EXTRA_DIRS= installer/lib installer/templates -.include "${PORTSDIR}/lang/elixir/bsd.elixir.mk" +.include "${.CURDIR}/../../lang/elixir/bsd.elixir.mk" .include <bsd.port.mk> diff --git a/www/elixir-phoenix_ecto/Makefile b/www/elixir-phoenix_ecto/Makefile index 9970528e5671..cb4f1820594e 100644 --- a/www/elixir-phoenix_ecto/Makefile +++ b/www/elixir-phoenix_ecto/Makefile @@ -19,5 +19,5 @@ MIX_BUILD_DEPS= databases/elixir-ecto \ devel/elixir-poison 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/www/elixir-phoenix_html/Makefile b/www/elixir-phoenix_html/Makefile index 79512c2eb2ea..f8fe34d94ae5 100644 --- a/www/elixir-phoenix_html/Makefile +++ b/www/elixir-phoenix_html/Makefile @@ -17,5 +17,5 @@ GH_ACCOUNT= phoenixframework MIX_BUILD_DEPS= devel/elixir-plug MIX_RUN_DEPS:= ${MIX_BUILD_DEPS} -.include "${PORTSDIR}/lang/elixir/bsd.elixir.mk" +.include "${.CURDIR}/../../lang/elixir/bsd.elixir.mk" .include <bsd.port.mk> |