diff options
author | Steve Wills <swills@FreeBSD.org> | 2012-06-11 02:59:16 +0800 |
---|---|---|
committer | Steve Wills <swills@FreeBSD.org> | 2012-06-11 02:59:16 +0800 |
commit | 3f8ee65c5bb955956b9272758db7c32a796875c3 (patch) | |
tree | 518ceaa68c23443ba22201587b1cd03c7bce26ad /databases | |
parent | 8c1d11010cab82f4bfde744dc311a1d534f2a1ee (diff) | |
download | freebsd-ports-gnome-3f8ee65c5bb955956b9272758db7c32a796875c3.tar.gz freebsd-ports-gnome-3f8ee65c5bb955956b9272758db7c32a796875c3.tar.zst freebsd-ports-gnome-3f8ee65c5bb955956b9272758db7c32a796875c3.zip |
- Don't use += where it's not necessary
Diffstat (limited to 'databases')
-rw-r--r-- | databases/p5-DBD-InterBase/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/databases/p5-DBD-InterBase/Makefile b/databases/p5-DBD-InterBase/Makefile index 6db200460088..d9defc6c670c 100644 --- a/databases/p5-DBD-InterBase/Makefile +++ b/databases/p5-DBD-InterBase/Makefile @@ -15,8 +15,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= DBI driver for InterBase RDBMS server -BUILD_DEPENDS+= p5-DBI>=0:${PORTSDIR}/databases/p5-DBI -RUN_DEPENDS+= ${BUILD_DEPENDS} +BUILD_DEPENDS= p5-DBI>=0:${PORTSDIR}/databases/p5-DBI +RUN_DEPENDS:= ${BUILD_DEPENDS} PERL_CONFIGURE= yes USE_FIREBIRD= yes |