diff options
author | rillig <rillig@pkgsrc.org> | 2005-12-05 20:49:47 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2005-12-05 20:49:47 +0000 |
commit | 5ec134d67dbba7a354689af359fb4dd92bc8cbec (patch) | |
tree | dac5b1dd14794d86b061d26b9503adb2552ed3f8 /databases/db4/Makefile | |
parent | 9d13f62cc158ce4d29412c1798882c83849d448b (diff) | |
download | pkgsrc-5ec134d67dbba7a354689af359fb4dd92bc8cbec.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 'databases/db4/Makefile')
-rw-r--r-- | databases/db4/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/databases/db4/Makefile b/databases/db4/Makefile index 84d396e9bd1..bb469850fd9 100644 --- a/databases/db4/Makefile +++ b/databases/db4/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.40 2005/11/04 18:47:52 tv Exp $ +# $NetBSD: Makefile,v 1.41 2005/12/05 20:49:57 rillig Exp $ DISTNAME= db-4.3.29 PKGNAME= ${DISTNAME:S/db/db4/} @@ -27,7 +27,7 @@ CONFIGURE_ARGS+= --program-transform-name=s,db_,db4_, # NetBSD-sparc64-1.6*'s f77 makes configure failing and as f77 is not # needed for this package the following does no harm on other platform. -CONFIGURE_ENV+= F77=${FALSE} +CONFIGURE_ENV+= F77=${FALSE:Q} # Along with a hack in patch-ab, this forces shlib detection via # the pkgsrc-supplied libtool only. @@ -37,7 +37,7 @@ OPSYSVARS+= LIBSO_LIBS LIBSO_LIBS.Interix+= -lrpclib LIBS.Interix+= -lrpclib # needed for in-tree programs, too LIBSO_LIBS.SunOS+= -lnsl -lrt -CONFIGURE_ENV+= LIBSO_LIBS="${LIBSO_LIBS}" +CONFIGURE_ENV+= LIBSO_LIBS=${LIBSO_LIBS:Q} # DB4 only want pthreads because it's really after POSIX 1003.1 # inter-process mutexes. In this case, we only care to use the native |