diff options
author | marino <marino@FreeBSD.org> | 2014-02-22 02:35:55 +0800 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2014-02-22 02:35:55 +0800 |
commit | cca925923a71b33ed2a1b95bd0998b50ea6cddd3 (patch) | |
tree | c6493c0bb0ebf7c2b8197dc7f87b41517902bdca /math/abakus | |
parent | 964dba1320c68765c12b98e81c710f05c41bb176 (diff) | |
download | freebsd-ports-gnome-cca925923a71b33ed2a1b95bd0998b50ea6cddd3.tar.gz freebsd-ports-gnome-cca925923a71b33ed2a1b95bd0998b50ea6cddd3.tar.zst freebsd-ports-gnome-cca925923a71b33ed2a1b95bd0998b50ea6cddd3.zip |
math/abakus: Use absolute path of flex during specification
Since flex is in base, specifying "flex" in BUILD_DEPENDS does nothing;
the requirement is satisfied by the base flex and the ports version is
not brought in. One problem: the abakus makefile uses the absolute path
of flex, so it has to be brought in.
Diffstat (limited to 'math/abakus')
-rw-r--r-- | math/abakus/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/math/abakus/Makefile b/math/abakus/Makefile index e8b85a8c9f7c..d2254ed4b912 100644 --- a/math/abakus/Makefile +++ b/math/abakus/Makefile @@ -12,7 +12,7 @@ COMMENT= Simple KDE Calculator LICENSE= GPLv2 -BUILD_DEPENDS= flex:${PORTSDIR}/textproc/flex +BUILD_DEPENDS= ${LOCALBASE}/bin/flex:${PORTSDIR}/textproc/flex LIB_DEPENDS= libmpfr.so:${PORTSDIR}/math/mpfr USE_BZIP2= yes |