fix initialization before BEGIN block

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2672 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
José Matox 2001-09-03 22:17:18 +00:00
parent ecdfc90a7a
commit 2365844d2e
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,6 @@
2001-09-03 Yves Bastide <stid@libd-pc11.univ-bpclermont.fr>
* reLyX/reLyX.in: fix initialization before BEGIN block.
2001-09-02 Dekel Tsur <dekelts@tau.ac.il>
* Makefile.am (pkgdata_DATA): Add symbols file.

View File

@ -14,11 +14,13 @@ $^W = 1; # same as 'perl -w'
use vars qw($lyxdir $lyxname);
my (@maybe_dir);
my $mainscript = "reLyXmain.pl";
my $mainscript;
my $relyxdir;
# Do this in a BEGIN block so it's done before the 'use lib' below
BEGIN{
# Variables may not be assigned before the BEGIN block
$mainscript = "reLyXmain.pl";
# This points to LyX library dir, e.g. /usr/local/share/lyx
$lyxdir = "@LYX_DIR@";
# This is just "." if you compiled from the source directory