4681971d6d
These properties are not transmitted with git-svn(1) [1], which might then cause failed patches when modifying lines close to these properties. git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9554 30fe4595-0a0c-4342-8851-515496e4dcbd Former-commit-id: 6ed21e1fe12d01a370842418c35722c75117a30a Former-commit-id: 8ecd21b7c0211cd000b10b3f0032980f63c06398
34 lines
935 B
Bash
34 lines
935 B
Bash
#! /bin/bash
|
|
# @configure_input@
|
|
|
|
##############################################################################
|
|
#
|
|
# file : accc.in
|
|
# created : Tue Aug 19 23:23:51 CEST 2003
|
|
# copyright : (C) 2003 by Eric Espie
|
|
# email : Eric.Espie@torcs.org
|
|
#
|
|
##############################################################################
|
|
#
|
|
# 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/accc-bin $*
|
|
|
|
rm -f temp.objf
|
|
|
|
exit 0
|