diff options
author | ghen <ghen@pkgsrc.org> | 2012-01-23 15:11:54 +0000 |
---|---|---|
committer | ghen <ghen@pkgsrc.org> | 2012-01-23 15:11:54 +0000 |
commit | bd15fd7460c25b39f1e0f9b1cd97e94a36d307bf (patch) | |
tree | caf80a95fa312c7890dc0a1d4a187ed35e3bacc1 /net/powerdns/patches | |
parent | 30f1213897b2054862c9919f174e50b457462cc2 (diff) | |
download | pkgsrc-bd15fd7460c25b39f1e0f9b1cd97e94a36d307bf.tar.gz |
Fix unportable == check in configure (I did not have PKG_DEVELOPER=yes when
previously updating this pkg), noted by joerg.
Also fix some PLIST issues (introduced with the same update).
Bump PKGREVISION of affected packages.
Diffstat (limited to 'net/powerdns/patches')
-rw-r--r-- | net/powerdns/patches/patch-configure | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/net/powerdns/patches/patch-configure b/net/powerdns/patches/patch-configure new file mode 100644 index 00000000000..da4abf37624 --- /dev/null +++ b/net/powerdns/patches/patch-configure @@ -0,0 +1,13 @@ +$NetBSD: patch-configure,v 1.1 2012/01/23 15:11:54 ghen Exp $ + +--- configure.orig 2012-01-23 14:16:18.745785316 +0000 ++++ configure +@@ -16867,7 +16867,7 @@ do + done + modulelibs="$modulelibs `cat $srcdir/modules/${a}backend/OBJECTLIBS`" + +- if test ${a} == "gpgsql"; then ++ if test ${a} = "gpgsql"; then + case "$host_os" in + freebsd*) + ;; |