mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-20 11:48:30 -06:00
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@932 57a11ea4-9604-0410-9ed3-97b8803252fd
15 lines
384 B
Bash
15 lines
384 B
Bash
#! /bin/sh
|
|
# @configure_input@
|
|
|
|
XACC_HELP=${XACC_HELP}:./Docs:@prefix@/share/xacc/Docs
|
|
export XACC_HELP
|
|
|
|
# hack alert -- we should really be using ldconfig to look for
|
|
# the motif library. We should also do something to auto-detect
|
|
# and load the gtk version.
|
|
if [ -f /usr/X11R6/lib/libXm.so -o -L /usr/X11R6/lib/libXm.so ]; then
|
|
exec xacc.bin $@
|
|
else
|
|
exec xacc-static.bin $@
|
|
fi
|