summaryrefslogtreecommitdiff
path: root/databases/db4
diff options
context:
space:
mode:
authorrillig <rillig>2005-12-05 20:49:47 +0000
committerrillig <rillig>2005-12-05 20:49:47 +0000
commitb4f920543059af038598712771c3211999ef42a6 (patch)
treedac5b1dd14794d86b061d26b9503adb2552ed3f8 /databases/db4
parent5bf026ec112f405b514a2d69a72e10fa92c4c524 (diff)
downloadpkgsrc-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 'databases/db4')
-rw-r--r--databases/db4/Makefile6
-rw-r--r--databases/db4/hacks.mk4
2 files changed, 5 insertions, 5 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
diff --git a/databases/db4/hacks.mk b/databases/db4/hacks.mk
index 161dadbc279..31e6f7d5ae6 100644
--- a/databases/db4/hacks.mk
+++ b/databases/db4/hacks.mk
@@ -1,4 +1,4 @@
-# $NetBSD: hacks.mk,v 1.3 2005/07/01 15:32:51 tron Exp $
+# $NetBSD: hacks.mk,v 1.4 2005/12/05 20:49:57 rillig Exp $
### [Sun Mar 14 19:32:40 UTC 2004 : jlam]
### GCC 3.3.x and older versions have an optimization bug on powerpc that's
@@ -15,7 +15,7 @@ _GCC_IS_TOO_OLD!= \
else \
${ECHO} "no"; \
fi
-MAKEFLAGS+= _GCC_IS_TOO_OLD=${_GCC_IS_TOO_OLD}
+MAKEFLAGS+= _GCC_IS_TOO_OLD=${_GCC_IS_TOO_OLD:Q}
. endif
. if !empty(_GCC_IS_TOO_OLD:M[yY][eE][sS])
PKG_HACKS+= powerpc-codegen