hc
2025-02-14 bbb9540dc49f70f6b703d1c8d1b85fa5f602d86e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh
#
# Wrapper script to hide distribution-specific installation
# prefixes when running standard Xenomai commands.
#
# e.g. "xeno latency"
#
 
prefix="@prefix@"
exec_prefix="@exec_prefix@"
BINDIR="@bindir@"
TESTDIR="@XENO_TEST_DIR@"
unset prefix exec_prefix
 
test -x $BINDIR/$1 && exec $BINDIR/$@
test -x $TESTDIR/$1 && exec $TESTDIR/$@
echo "$1: not found/executable"