Changes between Version 9 and Version 10 of Howto
- Timestamp:
- 09/15/09 11:09:05 (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Howto
v9 v10 44 44 45 45 $ cpan Module::Install 46 47 === GNOME launch script ===48 49 Using padre.pl in a GNOME launcher doesn't work in case the Perl modules needed by Padre are installed in a user specific directory, for example by using local::lib.50 A simple workaround is to create a bash script which uses local::lib (or sets the PERL5LIB environment variable by some other means) and then calls padre:51 52 {{{53 #!/bin/bash54 eval $(perl -I$HOME/perl5/lib/perl5 -Mlocal::lib)55 /home/ahartmai/perl5/bin/padre >/tmp/padre_out 2>/tmp/padre_err56 }}}57 58 TODO: improve the details here59 60 46 61 47 = Create a Patch = … … 122 108 123 109 110 = How to run Padre from a GNOME launcher = 111 112 Using padre in a GNOME launcher doesn't work in case the Perl modules needed by Padre are installed in a user specific directory, for example by using local::lib. 113 A simple workaround is to create a bash script which uses local::lib (or sets the PERL5LIB environment variable by some other means) and then calls padre: 114 115 {{{ 116 #!/bin/bash 117 eval $(perl -I$HOME/perl5/lib/perl5 -Mlocal::lib) 118 /home/ahartmai/perl5/bin/padre >/tmp/padre_out 2>/tmp/padre_err 119 }}} 120 121 TODO: improve the details here 122
