From mboxrd@z Thu Jan 1 00:00:00 1970 From: Christoph Egger Subject: Re: [PATCH][TOOLS] libfsimage: portability fixes Date: Thu, 27 Mar 2008 16:36:54 +0100 Message-ID: <200803271636.54271.Christoph.Egger@amd.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Content-Disposition: inline List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xensource.com Errors-To: xen-devel-bounces@lists.xensource.com To: Keir Fraser Cc: xen-devel@lists.xensource.com List-Id: xen-devel@lists.xenproject.org Hi Keir, changeset 17309 has one hunk too much: --- a/tools/libfsimage/check-libext2fs Thu Mar 27 14:43:20 2008 +0000 +++ b/tools/libfsimage/check-libext2fs Thu Mar 27 15:13:55 2008 +0000 @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash cat >ext2-test.c < This causes: ksh: ./check-libext2fs: No such file or directory because /bin/bash does not exist on *BSD. Please apply this: diff -r ee38b254e98e tools/libfsimage/check-libext2fs --- a/tools/libfsimage/check-libext2fs Thu Mar 27 15:13:55 2008 +0000 +++ b/tools/libfsimage/check-libext2fs Thu Mar 27 18:44:05 2008 +0100 @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh cat >ext2-test.c < Christoph