source: trunk/packages/xen-3.1/xen-3.1/tools/check/check_crypto_lib @ 34

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

Add xen and xen-common

  • Property svn:executable set to *
File size: 224 bytes
Line 
1#!/bin/sh
2# CHECK-BUILD CHECK-INSTALL
3
4RC=0
5
6PATH=/sbin:$PATH
7set -e
8ldconfig -p 2>&1 | grep -q libcrypto.so || RC=1
9
10if test ${RC} -ne 0; then
11        echo
12        echo " *** Check for crypto library FAILED"
13fi
14
15exit ${RC}
Note: See TracBrowser for help on using the repository browser.