source: trunk/packages/xen-common/xen-common/tools/check/check_xgettext @ 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: 196 bytes
Line 
1#!/bin/sh
2# CHECK-BUILD
3
4RC=0
5
6TOOL="xgettext"
7which ${TOOL} 1>/dev/null 2>&1 || RC=1
8
9if test ${RC} -ne 0; then
10        echo
11        echo " *** Check for the gettext utility (${TOOL}) FAILED"
12fi
13
14exit ${RC} 
Note: See TracBrowser for help on using the repository browser.