diff options
author | Eitan Adler <eadler@FreeBSD.org> | 2013-12-12 21:34:00 +0000 |
---|---|---|
committer | Eitan Adler <eadler@FreeBSD.org> | 2013-12-12 21:34:00 +0000 |
commit | 77384e6213600d72352212874d6c094431e886a4 (patch) | |
tree | 3489ae518fc349143645cc9f2035459f623c954f /devel | |
parent | 9313a366e583a882aa4e08ea9518063f78ab9596 (diff) |
devel/creduce: fix dependencies
I had forgotten a += so the run depends were wrong.
Further, the dep on clang won't work correctly since a version bump on clang
Reported by: brooks (mostly)
Notes
Notes:
svn path=/head/; revision=336291
Diffstat (limited to 'devel')
-rw-r--r-- | devel/creduce/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/devel/creduce/Makefile b/devel/creduce/Makefile index 679751764ae3..2e015d5efe9b 100644 --- a/devel/creduce/Makefile +++ b/devel/creduce/Makefile @@ -12,14 +12,15 @@ COMMENT= Produces small test cases LICENSE= BSD2CLAUSE -BUILD_DEPENDS= clang32=3.2:${PORTSDIR}/lang/clang32 -RUN_DEPENDS= clang32=3.2:${PORTSDIR}/lang/clang32 -RUN_DEPENDS= topformflat:${PORTSDIR}/devel/delta \ +BUILD_DEPENDS= llvm-config32:${PORTSDIR}/lang/clang32 +RUN_DEPENDS= llvm-config32:${PORTSDIR}/lang/clang32 \ + topformflat:${PORTSDIR}/devel/delta \ astyle:${PORTSDIR}/devel/astyle \ p5-Benchmark-Timer>=0:${PORTSDIR}/devel/p5-Benchmark-Timer \ p5-Exporter-Lite>=0:${PORTSDIR}/devel/p5-Exporter-Lite \ p5-File-Which>=0:${PORTSDIR}/sysutils/p5-File-Which \ - p5-Regexp-Common>=0:${PORTSDIR}/textproc/p5-Regexp-Common + p5-Regexp-Common>=0:${PORTSDIR}/textproc/p5-Regexp-Common \ + devel/p5-Sys-Cpu>=0:${PORTSDIR}/devel/p5-Sys-Cpu USE_GITHUB= yes GH_ACCOUNT= csmith-project |