diff options
author | marino <marino@FreeBSD.org> | 2016-11-21 03:37:13 +0800 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2016-11-21 03:37:13 +0800 |
commit | 6f499de885fa487ab02e457e760cac4d170a2341 (patch) | |
tree | a4606bc9a8da2fd34a6f9aca661f9d492391d0c2 /misc/ytree | |
parent | b94e1aad63f8b00bc8a7f16908675ea22ff9c928 (diff) | |
download | freebsd-ports-gnome-6f499de885fa487ab02e457e760cac4d170a2341.tar.gz freebsd-ports-gnome-6f499de885fa487ab02e457e760cac4d170a2341.tar.zst freebsd-ports-gnome-6f499de885fa487ab02e457e760cac4d170a2341.zip |
misc/ytree: Document readline requirement and honor FLAGS
After fixing the flags honoring, the LDFLAGS redefinition was no
longer necessary. The readline library requirement was undocumented.
Approved by: General blankets
Diffstat (limited to 'misc/ytree')
-rw-r--r-- | misc/ytree/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/misc/ytree/Makefile b/misc/ytree/Makefile index 80ad2d1e5dc5..f1a9649e4105 100644 --- a/misc/ytree/Makefile +++ b/misc/ytree/Makefile @@ -12,9 +12,9 @@ COMMENT= DOS-XTREE(tm) look-a-like file manager LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING -USES= ncurses +USES= ncurses readline ALL_TARGET= ytree -MAKE_ARGS= LDFLAGS="${LDFLAGS} -lncurses -lcompat" +LDFLAGS+= -lreadline OPTIONS_DEFINE= DOCS |