ab7fdf50c5
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@4442 30fe4595-0a0c-4342-8851-515496e4dcbd Former-commit-id: 2f7d8d5adecc2d0e5d0c5160d8a9eea3d1a98a26 Former-commit-id: 3753a3e3a2db28d069bd8d0e2ee320a7b6045a8d
33 lines
1,002 B
Bash
33 lines
1,002 B
Bash
#! /bin/bash
|
|
# @configure_input@
|
|
|
|
##############################################################################
|
|
#
|
|
# file : nfsperf.in
|
|
# created : Tue Aug 19 23:23:51 CEST 2003
|
|
# copyright : (C) 2003 by Eric Espie
|
|
# email : Eric.Espie@torcs.org
|
|
# version : $Id: nfsperf.in,v 1.1.2.1 2008/06/01 20:19:39 berniw Exp $
|
|
#
|
|
##############################################################################
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
##############################################################################
|
|
|
|
prefix=@prefix@
|
|
exec_prefix=${prefix}
|
|
|
|
BINDIR=${exec_prefix}
|
|
LIBDIR=${exec_prefix}/lib
|
|
DATADIR=${exec_prefix}/share
|
|
VARDIR=${exec_prefix}/var
|
|
|
|
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$LIBDIR/lib
|
|
|
|
$LIBDIR/nfsperf-bin $*
|
|
|
|
exit 0
|