WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-devel

[Xen-devel] [PATCH] tools/libxc - Remove duplicate zlib check

To: xen-devel@xxxxxxxxxxxxxxxxxxx
Subject: [Xen-devel] [PATCH] tools/libxc - Remove duplicate zlib check
From: Bastian Blank <bastian@xxxxxxxxxxxx>
Date: Sat, 26 Jan 2008 17:57:04 +0100
Delivery-date: Sat, 26 Jan 2008 08:58:19 -0800
Envelope-to: www-data@xxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-devel-request@lists.xensource.com?subject=help>
List-id: Xen developer discussion <xen-devel.lists.xensource.com>
List-post: <mailto:xen-devel@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=unsubscribe>
Sender: xen-devel-bounces@xxxxxxxxxxxxxxxxxxx
User-agent: Mutt/1.5.13 (2006-08-11)
# HG changeset patch
# User Bastian Blank <waldi@xxxxxxxxxx>
# Date 1201364477 -3600
# Node ID e3ab6b142786abdbce8d58f4c72c6f068417692c
# Parent  3e8a713b70e99d79b8af3d6ee5c7d3bc1db606e1
Remove duplicate zlib check.

It is already checked in tools/check/check_zlib.

Signed-off-by: Bastian Blank <waldi@xxxxxxxxxx>

diff -r 3e8a713b70e9 -r e3ab6b142786 tools/libxc/Makefile
--- a/tools/libxc/Makefile      Sat Jan 26 17:21:17 2008 +0100
+++ b/tools/libxc/Makefile      Sat Jan 26 17:21:17 2008 +0100
@@ -80,17 +80,8 @@ all: build
 all: build
 
 .PHONY: build
-build: check-for-zlib
+build: $(LIB)
        $(MAKE) $(LIB)
-
-.PHONY: check-for-zlib
-check-for-zlib:
-       @if [ ! -e /usr/include/zlib.h ]; then \
-       echo "***********************************************************"; \
-       echo "ERROR: install zlib header files (http://www.gzip.org/zlib)"; \
-       echo "***********************************************************"; \
-       false; \
-       fi
 
 .PHONY: install
 install: build

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

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-devel] [PATCH] tools/libxc - Remove duplicate zlib check, Bastian Blank <=