All of lore.kernel.org
 help / color / mirror / Atom feed
From: Christoph Egger <Christoph.Egger@amd.com>
To: Keir Fraser <Keir.Fraser@cl.cam.ac.uk>
Cc: xen-devel@lists.xensource.com
Subject: Re: [PATCH][TOOLS] libfsimage: portability fixes
Date: Thu, 27 Mar 2008 16:36:54 +0100	[thread overview]
Message-ID: <200803271636.54271.Christoph.Egger@amd.com> (raw)


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 <<EOF
 #include <ext2fs/ext2fs.h>

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 <<EOF
 #include <ext2fs/ext2fs.h>


Christoph

             reply	other threads:[~2008-03-27 15:36 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-03-27 15:36 Christoph Egger [this message]
  -- strict thread matches above, loose matches on Subject: below --
2008-03-26 14:14 [PATCH][TOOLS] libfsimage: portability fixes Christoph Egger
2008-03-27 10:54 ` Ian Jackson
2008-03-27 15:13   ` Christoph Egger
2008-03-27 15:36     ` Ian Jackson
2008-03-27 16:23       ` John Levon
2008-03-28 10:08       ` Christoph Egger
2008-03-28 10:42         ` Ian Jackson
2008-03-28 12:40           ` Christoph Egger
2008-03-28 14:19             ` Ian Jackson
2008-03-27 11:05 ` Ian Jackson
2008-03-27 15:16   ` Christoph Egger
2008-03-27 16:26     ` John Levon
2008-03-27 15:05 ` Aron Griffis
2008-03-27 15:13   ` Ian Jackson
2008-03-27 15:56     ` Aron Griffis

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=200803271636.54271.Christoph.Egger@amd.com \
    --to=christoph.egger@amd.com \
    --cc=Keir.Fraser@cl.cam.ac.uk \
    --cc=xen-devel@lists.xensource.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.