in reply to Error Installing Module

What does this error mean?

I think it means that the Makefile that was created (when you ran 'perl Makefile.PL') was written for some flavour of make *other* than 'nmake'.
Running perl -V:make will tell you the flavour of make for which the makefile was written. You should either run that flavour of make, or do as Anonymous Monk did and specify that you want an "nmake flavoured" makefile by starting with perl Makefile.PL make=nmake.

Cheers,
Rob

Replies are listed 'Best First'.
Re^2: Error Installing Module
by tej (Scribe) on Mar 03, 2011 at 08:09 UTC

    Thanks, Now i installed it..But is there any way by which we can uninstall or modify it?

      But is there any way by which we can uninstall or modify it?

      To uninstall, I would just manually delete the files that were installed by 'make install'. (These files would have been named during the 'make install' process.)

      It's generally unnecessary to remove anything - you can just leave them sit there and they'll do no harm. If you want to make modifications, just modify the source, and then build and install again. (The new install will overwrite the old installation.)

      Cheers,
      Rob
        Thanks..I 'l try to change and install the module again..