From mboxrd@z Thu Jan 1 00:00:00 1970 From: Christoph Egger Subject: [PATCH] tools/xm-test: portability fix Date: Mon, 9 May 2011 12:08:53 +0200 Message-ID: <4DC7BD35.6030005@amd.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="------------030801060506090001060100" Return-path: List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xensource.com Errors-To: xen-devel-bounces@lists.xensource.com To: "xen-devel@lists.xensource.com" List-Id: xen-devel@lists.xenproject.org --------------030801060506090001060100 Content-Type: text/plain; charset="ISO-8859-15"; format=flowed Content-Transfer-Encoding: 7bit Avoid using == in /bin/sh script. From: David Brownlee Signed-off-by: Christoph Egger Please apply this to xen-4.1-testing, too. -- ---to satisfy European Law for business letters: Advanced Micro Devices GmbH Einsteinring 24, 85689 Dornach b. Muenchen Geschaeftsfuehrer: Alberto Bozzo, Andrew Bowd Sitz: Dornach, Gemeinde Aschheim, Landkreis Muenchen Registergericht Muenchen, HRB Nr. 43632 --------------030801060506090001060100 Content-Type: text/plain; name="xen_test.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="xen_test.diff" Content-Description: xen_test.diff diff -r 4b48d86396b7 -r 567bcc515c6a tools/xm-test/ramdisk/make-release.sh --- a/tools/xm-test/ramdisk/make-release.sh +++ b/tools/xm-test/ramdisk/make-release.sh @@ -1,6 +1,6 @@ #!/bin/sh -if [ "$1" == "" ] +if [ "$1" = "" ] then arch="" else --------------030801060506090001060100 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel --------------030801060506090001060100--