diff options
author | clsung <clsung@FreeBSD.org> | 2004-10-07 13:19:12 +0000 |
---|---|---|
committer | clsung <clsung@FreeBSD.org> | 2004-10-07 13:19:12 +0000 |
commit | 10ba6bc23925898713a759a854f1ef79d278b334 (patch) | |
tree | ab09fe4f030883565d78b47fca5f3757831916fe | |
parent | 578ae466eae670311115d5ce77d6f1eb4c9d976f (diff) | |
download | FreeBSD-ports-10ba6bc23925898713a759a854f1ef79d278b334.zip FreeBSD-ports-10ba6bc23925898713a759a854f1ef79d278b334.tar.gz |
replace .error to IGNORE.
Problem noted by Richard Collyer <richard at firebadger.net> and eik@.
Scenario: we failed (% make index) without defining any WITH_BDB_VER,
and solved by following porters handbook:
http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/testing.html#DOT-ERROR-BREAKS-INDEX
Approved by: portmgr (krion)
-rw-r--r-- | databases/p5-BerkeleyDB/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/databases/p5-BerkeleyDB/Makefile b/databases/p5-BerkeleyDB/Makefile index 7415b20..734e398 100644 --- a/databases/p5-BerkeleyDB/Makefile +++ b/databases/p5-BerkeleyDB/Makefile @@ -35,7 +35,7 @@ BDB_LIB_VER= db41 LIB_DEPENDS= db-4.2.2:${PORTSDIR}/databases/db42 BDB_LIB_VER= db-4.2 .else -.error WITH_BDB_VER must be one between 2, 3, 4, 41 and 42 +IGNORE= "WITH_BDB_VER must be one between 2, 3, 4, 41 and 42" .endif PERL_CONFIGURE= yes |