diff options
author | rillig <rillig> | 2005-12-05 20:49:47 +0000 |
---|---|---|
committer | rillig <rillig> | 2005-12-05 20:49:47 +0000 |
commit | b4f920543059af038598712771c3211999ef42a6 (patch) | |
tree | dac5b1dd14794d86b061d26b9503adb2552ed3f8 /lang/ocaml | |
parent | 5bf026ec112f405b514a2d69a72e10fa92c4c524 (diff) | |
download | pkgsrc-b4f920543059af038598712771c3211999ef42a6.tar.gz |
Fixed pkglint warnings. The warnings are mostly quoting issues, for
example MAKE_ENV+=FOO=${BAR} is changed to MAKE_ENV+=FOO=${BAR:Q}. Some
other changes are outlined in
http://mail-index.netbsd.org/tech-pkg/2005/12/02/0034.html
Diffstat (limited to 'lang/ocaml')
-rw-r--r-- | lang/ocaml/Makefile.common | 4 | ||||
-rw-r--r-- | lang/ocaml/PLIST.stub | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/lang/ocaml/Makefile.common b/lang/ocaml/Makefile.common index 4a8a0aae6d9..796db89b058 100644 --- a/lang/ocaml/Makefile.common +++ b/lang/ocaml/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.11 2005/09/04 13:57:50 tonio Exp $ +# $NetBSD: Makefile.common,v 1.12 2005/12/05 20:50:26 rillig Exp $ DISTNAME= ocaml-3.08.4 CATEGORIES= lang @@ -17,7 +17,7 @@ HAS_CONFIGURE= yes CONFIGURE_ARGS+= -prefix ${PREFIX} CONFIGURE_ARGS+= -libs "${LDFLAGS}" CONFIGURE_ARGS+= -with-pthread -CONFIGURE_ENV+= BDB_LIBS=${BDB_LIBS} \ +CONFIGURE_ENV+= BDB_LIBS=${BDB_LIBS:Q} \ BDB_BUILTIN=${USE_BUILTIN.${BDB_TYPE}} CPPFLAGS+= -DDB_DBM_HSEARCH diff --git a/lang/ocaml/PLIST.stub b/lang/ocaml/PLIST.stub index abd01f65c1e..7ca7a465e71 100644 --- a/lang/ocaml/PLIST.stub +++ b/lang/ocaml/PLIST.stub @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST.stub,v 1.1 2005/02/04 21:35:51 adrianp Exp $ +@comment $NetBSD: PLIST.stub,v 1.2 2005/12/05 20:50:26 rillig Exp $ lib/ocaml/stublibs/dllbigarray.so lib/ocaml/stublibs/dllmldbm.so lib/ocaml/stublibs/dllnums.so @@ -6,5 +6,5 @@ lib/ocaml/stublibs/dllstr.so lib/ocaml/stublibs/dllthreads.so lib/ocaml/stublibs/dllunix.so lib/ocaml/stublibs/dllvmthreads.so -@unexec ${RMDIR} %D/lib/ocaml/stublibs +@dirrm lib/ocaml/stublibs @unexec ${RMDIR} %D/lib/ocaml 2>/dev/null || ${TRUE} |