diff options
author | marino <marino@FreeBSD.org> | 2017-02-08 17:43:03 +0000 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2017-02-08 17:43:03 +0000 |
commit | 217e01cfdbff0f1a1c9bc8b10011338b0faca619 (patch) | |
tree | 807dc878cb99d36b790867c772c27310b86b17e3 | |
parent | 068515d55ccdfa61471211d740b574aed60cf416 (diff) | |
download | FreeBSD-ports-217e01cfdbff0f1a1c9bc8b10011338b0faca619.zip FreeBSD-ports-217e01cfdbff0f1a1c9bc8b10011338b0faca619.tar.gz |
games/ctris: honor LDFLAGS (again)
The previous update removed the LIBS definition of MAKE_ARGS, but it
is still needed for ports ncurses, so return it back (minus the -lm flag
which is no longer needed).
Approved by: nurses blanket
-rw-r--r-- | games/ctris/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/games/ctris/Makefile b/games/ctris/Makefile index a096c23..4f459c6 100644 --- a/games/ctris/Makefile +++ b/games/ctris/Makefile @@ -13,6 +13,7 @@ LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING USES= ncurses +MAKE_ARGS= LIBS="${LDFLAGS} -lncurses" USE_GITHUB= yes GH_ACCOUNT= dominikhackl |