diff options
author | agc <agc@pkgsrc.org> | 2014-01-28 18:00:41 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 2014-01-28 18:00:41 +0000 |
commit | e75ce40056abac57b9da55dd72f7d8648199d1da (patch) | |
tree | 12300c60e9738820bf97c47cf2e40a6fa73317e4 /sysutils | |
parent | 5a37aea2bccf04c84f9ad50c0bf3f9b5966dcd65 (diff) | |
download | pkgsrc-e75ce40056abac57b9da55dd72f7d8648199d1da.tar.gz |
Add a configure portability patch that was missed on the last update.
Thanks to joerg for the nudge.
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/libvirt/patches/patch-configure | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/sysutils/libvirt/patches/patch-configure b/sysutils/libvirt/patches/patch-configure new file mode 100644 index 00000000000..521f8c90261 --- /dev/null +++ b/sysutils/libvirt/patches/patch-configure @@ -0,0 +1,15 @@ +$NetBSD: patch-configure,v 1.1 2014/01/28 18:00:41 agc Exp $ + +Portability bug - test should use '=' for string equality + +--- configure 2014/01/25 02:05:59 1.1 ++++ configure 2014/01/25 02:06:27 +@@ -62681,7 +62681,7 @@ + if test "x$with_firewalld" = "xcheck" ; then + with_firewalld=$with_dbus + fi +-if test "x$with_firewalld" == "xyes" ; then ++if test "x$with_firewalld" = "xyes" ; then + if test "x$with_dbus" != "xyes" ; then + as_fn_error $? "You must have dbus enabled for firewalld support" "$LINENO" 5 + fi |