2004-02-15 Rodney Dawes <dobey@ximian.com> * evolution-nognome.in: Use @BASE_VERSION@ for the binary Fixes #54796 svn path=/trunk/; revision=24866
14 lines
281 B
Bash
14 lines
281 B
Bash
#!/bin/sh
|
|
|
|
prefix=@prefix@
|
|
exec_prefix=@exec_prefix@
|
|
|
|
PATH=@prefix@/bin:/usr/gnome/bin:${PATH}
|
|
GNOME2_PATH=@prefix@:/usr/gnome
|
|
LD_LIBRARY_PATH=@prefix@/lib:/usr/gnome/lib:${LD_LIBRARY_PATH}
|
|
|
|
export LD_LIBRARY_PATH GNOME2_PATH PATH
|
|
|
|
exec @libexecdir@/evolution-@BASE_VERSION@ "$@"
|
|
|