in reply to Problem installing PDF::Template
Change it to:my $pm_filter = $use_unicode ? q{perl -pi -e "s!UNI_YES ! !g;s!UNI_NO !\\#!g"} : q{perl -pi -e "s!UNI_NO ! !g;s!UNI_YES !\\#!g"};
and everything should work fine. The change was the double-quotes to single-quotes.my $pm_filter = $use_unicode ? q{perl -pi -e 's!UNI_YES ! !g;s!UNI_NO !\\#!g'} : q{perl -pi -e 's!UNI_NO ! !g;s!UNI_YES !\\#!g'};
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Problem installing PDF::Template
by mhearse (Chaplain) on Jan 07, 2008 at 23:27 UTC | |
by dragonchild (Archbishop) on Jan 08, 2008 at 02:32 UTC |