From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?ISO-8859-1?Q?Roger_Pau_Monn=E9?= Subject: Re: trivial build patch Date: Wed, 17 Apr 2013 11:30:14 +0200 Message-ID: <516E6BA6.9050103@citrix.com> References: <20130416233936.GE1171@quark.inf.phy.private.cam.ac.uk> Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Return-path: In-Reply-To: <20130416233936.GE1171@quark.inf.phy.private.cam.ac.uk> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: Patrick Welche Cc: "xen-devel@lists.xen.org" List-Id: xen-devel@lists.xenproject.org On 17/04/13 01:39, Patrick Welche wrote: > Trivial build fix for those of us not using bash... (xenbits.xen.org/xen) > = > Cheers, > = > Patrick > = > = > 0001-test-1-uses-not-for-string-comparison.patch > = > = > From f4431ab39b6056e4cceede2e8c40fc0b11b3bcc0 Mon Sep 17 00:00:00 2001 > From: Patrick Welche > Date: Wed, 10 Apr 2013 11:34:11 +0100 > Subject: [PATCH] test(1) uses =3D not =3D=3D for string comparison Thanks, but this patch is missing a SoB, please see: http://wiki.xen.org/wiki/Submitting_Xen_Patches#Signing_off_a_patch Apart from that: Acked-by: Roger Pau Monn=E9 > --- > m4/path_or_fail.m4 | 2 +- > m4/python_devel.m4 | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) > = > diff --git a/m4/path_or_fail.m4 b/m4/path_or_fail.m4 > index ece8cd4..04dee42 100644 > --- a/m4/path_or_fail.m4 > +++ b/m4/path_or_fail.m4 > @@ -1,6 +1,6 @@ > AC_DEFUN([AX_PATH_PROG_OR_FAIL], > [AC_PATH_PROG([$1], [$2], [no]) > -if test x"${$1}" =3D=3D x"no" = > +if test x"${$1}" =3D x"no" = > then > AC_MSG_ERROR([Unable to find $2, please install $2]) > fi]) > diff --git a/m4/python_devel.m4 b/m4/python_devel.m4 > index 0a2202c..659e7d4 100644 > --- a/m4/python_devel.m4 > +++ b/m4/python_devel.m4 > @@ -4,7 +4,7 @@ ac_previous_ldflags=3D$LDFLAGS > ac_python_version=3D`$PYTHON -c 'import distutils.sysconfig; \ > print distutils.sysconfig.get_config_var("VERSION")'` > AC_PATH_PROG([pyconfig], [$PYTHON-config], [no]) > -AS_IF([test x"$pyconfig" =3D=3D x"no"], [ > +AS_IF([test x"$pyconfig" =3D x"no"], [ > dnl For those that don't have python-config > CPPFLAGS=3D"$CFLAGS `$PYTHON -c 'import distutils.sysconfig; \ > print "-I" + distutils.sysconfig.get_config_var("INCLUDEPY")'`" > -- 1.8.2.1