cvsuser 02/06/05 20:42:18
Modified: . disassemble.pl
Log:
Making sure disassemble.pl can be run from anywhere...
Revision Changes Path
1.21 +3 -2 parrot/disassemble.pl
Index: disassemble.pl
===================================================================
RCS file: /cvs/public/parrot/disassemble.pl,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -w -r1.20 -r1.21
--- disassemble.pl 11 May 2002 03:19:54 -0000 1.20
+++ disassemble.pl 6 Jun 2002 03:42:18 -0000 1.21
@@ -8,11 +8,12 @@
# This program is free software. It is subject to the same license
# as the Parrot interpreter.
#
-# $Id: disassemble.pl,v 1.20 2002/05/11 03:19:54 mrjoltcola Exp $
+# $Id: disassemble.pl,v 1.21 2002/06/06 03:42:18 jgoff Exp $
#
use strict;
-use lib 'lib';
+use FindBin;
+use lib "$FindBin::Bin/lib";
use Parrot::Config;
use Parrot::OpLib::core;