diff options
author | marino <marino@FreeBSD.org> | 2013-08-11 07:05:33 +0800 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2013-08-11 07:05:33 +0800 |
commit | 43a86c1d6710cf201ba5628e0641b93f236c1e13 (patch) | |
tree | 72f7d8d31b4467f24928269f27b4904efe5e47de /lang | |
parent | 7e56f91788806b747f8a78395ed33e1e8f07e7f7 (diff) | |
download | freebsd-ports-gnome-43a86c1d6710cf201ba5628e0641b93f236c1e13.tar.gz freebsd-ports-gnome-43a86c1d6710cf201ba5628e0641b93f236c1e13.tar.zst freebsd-ports-gnome-43a86c1d6710cf201ba5628e0641b93f236c1e13.zip |
lang/ocaml-nox11: Fix package origin
lang/ocaml-nox11 port produces a package with the exact same name as
lang/ocaml because they have a common Makefile. However, by defining the
SFX variable before including it, ocaml-nox11 package name will receive
a suffix. This fixes an origin conflict seen on poudriere.
The new base package name will be ocaml-nox11
Approved by: bapt/culot (mentors, implicit), maintainer timeout
Diffstat (limited to 'lang')
-rw-r--r-- | lang/ocaml-nox11/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lang/ocaml-nox11/Makefile b/lang/ocaml-nox11/Makefile index 16a3a041df7b..eb3972740a0a 100644 --- a/lang/ocaml-nox11/Makefile +++ b/lang/ocaml-nox11/Makefile @@ -13,4 +13,6 @@ CONFLICTS= metaocaml-[0-9]* ocaml-[0-9]* ocaml-notk-[0-9]* OPTIONS_EXCLUDE=TK X11 +SFX= -nox11 + .include "${MASTERDIR}/Makefile" |