source: trunk/packages/xen-common/xen-common/tools/check/check_zlib_devel @ 34

Last change on this file since 34 was 34, checked in by hartmans, 17 years ago

Add xen and xen-common

  • Property svn:executable set to *
File size: 166 bytes
Line 
1#!/bin/sh
2# CHECK-BUILD
3
4RC=0
5
6set -e
7test -r /usr/include/zlib.h || RC=1
8
9if test ${RC} -ne 0; then
10        echo
11        echo " *** Check for zlib headers FAILED"
12fi
13
14exit ${RC}
Note: See TracBrowser for help on using the repository browser.