diff options
author | rillig <rillig@pkgsrc.org> | 2006-10-08 13:29:06 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2006-10-08 13:29:06 +0000 |
commit | 638c8e2cd1188909c28d10c1d3032d7f278bb2aa (patch) | |
tree | 59220966108cc4b7cd64620913a8add148a5e4f4 /databases/mysql4-client/patches | |
parent | e2243aae4967bd8450ec8ca391614407f3ecdec0 (diff) | |
download | pkgsrc-638c8e2cd1188909c28d10c1d3032d7f278bb2aa.tar.gz |
Fixed "test ==".
Diffstat (limited to 'databases/mysql4-client/patches')
-rw-r--r-- | databases/mysql4-client/patches/patch-bf | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/databases/mysql4-client/patches/patch-bf b/databases/mysql4-client/patches/patch-bf new file mode 100644 index 00000000000..d957168a1f1 --- /dev/null +++ b/databases/mysql4-client/patches/patch-bf @@ -0,0 +1,13 @@ +$NetBSD: patch-bf,v 1.1 2006/10/08 13:29:06 rillig Exp $ + +--- bdb/dist/configure.orig 2006-10-08 15:25:31.000000000 +0200 ++++ bdb/dist/configure 2006-10-08 15:26:39.000000000 +0200 +@@ -5038,7 +5038,7 @@ fi + # we're using. + case "$host_os" in + sysv5UnixWare*|sysv5OpenUNIX8*) +- if test "$GCC" == "yes"; then ++ if test "$GCC" = "yes"; then + CPPFLAGS="$CPPFLAGS -pthread" + LDFLAGS="$LDFLAGS -pthread" + else |