source: trunk/packages/xen-common/xen-common/tools/check/check_zlib_lib @ 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: 205 bytes
Line 
1#!/bin/sh
2# CHECK-BUILD CHECK-INSTALL
3
4RC=0
5
6PATH=/sbin:$PATH
7
8set -e
9ldconfig -p 2>&1 | grep -q libz.so || RC=1
10
11if test ${RC} -ne 0; then
12        echo
13        echo " *** Check for zlib library FAILED"
14fi
15
16exit ${RC} 
Note: See TracBrowser for help on using the repository browser.