Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:

Hi i am using Clearprompt, with Triggerseries for both windows and users as follows use ClearCase::ClearPrompt qw( clearprompt +Triggerseries ); It works no problem on Unix, but get the following on Windows ... "+Triggerseries is not exported by the ClearCase::Clearprompt module at \\...\Triggers.pm line 14 Any ideas how i get this working for windows ? Thanks Pol

Replies are listed 'Best First'.
Re: Perl and Clearcase
by Grygonos (Chaplain) on Nov 22, 2004 at 17:04 UTC

    From the docs ClearCase::ClearPromptuse ClearCase::ClearPrompt qw(clearprompt /TRIGGERSERIES); Ditch the + and replace with /. Turn on strict and warnings as well.

      Thanks for the quick reply. I changed to /Triggers and added strict &warnings still no luck, "/Triggerseries is not exported ...." Do i need to use some sort of special export construct for windows clearcase to inherit Triggerseries variable ? at the moment i do not export anything. -Pol

        Did you try copying the exact line I posted? That's what's listed in the docs for the current version listed on CPAN. Make sure you have the most current version of this module. I just downloaded and installed the newest CPAN version and the use command I posted has no problems. Update das module yah?