All of lore.kernel.org
 help / color / mirror / Atom feed
From: Steve Kemp <steve@steve.org.uk>
To: xen-devel <xen-devel@lists.xensource.com>
Subject: Dependency checking - early was Re: 3.0.3 without X
Date: Fri, 5 Jan 2007 09:31:32 +0000	[thread overview]
Message-ID: <20070105093132.GA30866@steve.org.uk> (raw)
In-Reply-To: <20070104223114.GA16275@leeni.uk.xensource.com>


[-- Attachment #1.1: Type: text/plain, Size: 1451 bytes --]

On Thu, Jan 04, 2007 at 10:31:14PM +0000, Ewan Mellor wrote:

> Certainly!  Patches to documentation such as the README and the user guide are
> always welcome.  This is a great way that people can help out -- by writing
> down the things that catch you out the first time around.

  I was about to report something like this myself this week.  Too often
 I install Xen on a new host and miss a dependency due to carelessness.

  Please find a patch below to "make world" which first runs "make tools/check"
 hopefully making sure that all dependencies are present and detected
 early.

  (Most frustrating is missing libssl, or libz, which is only otherwise
 detected right at the end of a kernel build.)

Steve
-- 

--- Makefile~   2006-12-23 21:17:38.000000000 +0000
+++ Makefile    2007-01-05 09:29:04.000000000 +0000
@@ -30,6 +30,13 @@
        $(MAKE) -C tools build
        $(MAKE) -C docs build

+#
+#  Check dependencies.
+#
+.PHONY: check
+check:
+       $(MAKE) -C tools/check
+
 # The test target is for unit tests that can run without an installation.  Of
 # course, many tests require a machine running Xen itself, and these are
 # handled elsewhere.
@@ -104,7 +111,7 @@
 # and place them in the install directory. 'make install' should then
 # copy them to the normal system directories
 .PHONY: world
-world:
+world: check
        $(MAKE) clean
        $(MAKE) kdelete
        $(MAKE) dist


[-- Attachment #1.2: Digital signature --]
[-- Type: application/pgp-signature, Size: 189 bytes --]

[-- Attachment #2: Type: text/plain, Size: 138 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel

  reply	other threads:[~2007-01-05  9:31 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-01-04 14:54 3.0.3 without X jason
2007-01-04 14:58 ` ron minnich
2007-01-04 15:01   ` Keir Fraser
2007-01-04 15:32     ` Ewan Mellor
2007-01-04 17:57       ` ron minnich
2007-01-04 18:11         ` jason
2007-01-04 18:12         ` Mark Williamson
2007-01-04 22:31         ` Ewan Mellor
2007-01-05  9:31           ` Steve Kemp [this message]
2007-01-04 19:32       ` Anthony Liguori
2007-01-04 19:48         ` Ewan Mellor
2007-01-04 21:17           ` Anthony Liguori
2007-01-04 22:38             ` Ewan Mellor
2007-01-04 14:59 ` Keir Fraser

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=20070105093132.GA30866@steve.org.uk \
    --to=steve@steve.org.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.