diff options
author | Matthias Andree <mandree@FreeBSD.org> | 2012-04-13 18:18:54 +0000 |
---|---|---|
committer | Matthias Andree <mandree@FreeBSD.org> | 2012-04-13 18:18:54 +0000 |
commit | 9fed1da798d08055bfe6cf3b5c0e8440408f815d (patch) | |
tree | 1728b4e2d8c3892632853800f67a1eb98e53197a | |
parent | 712c99ec369513608b52621eb1ca68fe10499e60 (diff) | |
download | freebsd-ports-9fed1da798d08055bfe6cf3b5c0e8440408f815d.zip |
Clarify effect of __MAKE_CONF change, and point to Wiki URL (in a comment).
-rw-r--r-- | lang/lua/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lang/lua/Makefile b/lang/lua/Makefile index 3908eec12c69..fe962987e724 100644 --- a/lang/lua/Makefile +++ b/lang/lua/Makefile @@ -27,6 +27,9 @@ MAKE_ENV= LUA_SONAME="liblua-${LUA_VER}.so.${LUA_VER_SH}" # Overriding __MAKE_CONF makes sure that we don't re-parse # /etc/make.conf during do-build, which would jeopardize the build # if, for instance, the user set CFLAGS=mumble +# NOTE: /etc/make.conf is read BEFORE Makefile, so we already +# have its settings when we get here. +# See http://wiki.freebsd.org/MatthiasAndree/LuaLessonsLearnt MAKE_ARGS= __MAKE_CONF=${NONEXISTENT} MAN1= lua-${LUA_VER}.1 luac-${LUA_VER}.1 |