I am trying to create a GNUMake file in TAO by using

"#mwc.pl -type gnuace"

command but I am receiving below mention error

"MPC_ROOT was set to /usr/opt/tao/2.0/share/ace/bin/MakeProjectCreator.

Can't locate Driver.pm in @INC ( @INC contains:

/usr/opt/tao/2.0/share/ace/bin/MakeProjectCreator/modules

/usr/lib64/perl5/site_perl/5.8.8/x86_64-linux-thread-multi

/usr/lib/perl5/site_perl/5.8.8 /usr/lib/perl5/site_perl

/usr/lib64/perl5/vendor_perl/5.8.8/x86_64-linux-thread-multi

/usr/lib/perl5/vendor_perl/5.8.8

/usr/lib/perl5/vendor_perl

/usr/lib64/perl5/5.8.8/x86_64-linux-thread-multi

/usr/lib/perl5/5.8.8 .

) at /usr/opt/tao/2.0/share/ace/bin/mwc.pl line 53."

Kindly share which perl package I need to install inorder to get this Driver.pm? Thanks
#! /usr/bin/perl eval '(exit $?0)' && eval 'exec perl -w -S $0 ${1+"$@"}' & eval 'exec perl -w -S $0 $argv:q' if 0; # ****************************************************************** # Author: Chad Elliott # Date: 6/17/2002 # $Id: mwc.pl 1861 2011-08-31 16:18:08Z mesnierp $ # ****************************************************************** # ****************************************************************** # Pragma Section # ****************************************************************** require 5.006; use strict; use FindBin; use File::Spec; use File::Basename; my($basePath) = (defined $FindBin::RealBin ? $FindBin::RealBin : File::Spec->rel2abs(dirna +me($0))); if ($^O eq 'VMS') { $basePath = File::Spec->rel2abs(dirname($0)) if ($basePath eq ''); $basePath = VMS::Filespec::unixify($basePath); } $basePath .= '/MakeProjectCreator'; my($mpcroot) = $ENV{MPC_ROOT}; my($mpcpath) = (defined $mpcroot ? $mpcroot : dirname(dirname($basePath)) . '/MPC +'); unshift(@INC, $mpcpath . '/modules'); if (defined $mpcroot) { print STDERR "MPC_ROOT was set to $mpcroot.\n"; } if (! -d "$mpcpath/modules") { print STDERR "ERROR: Unable to find the MPC modules in $mpcpath.\n"; if (defined $mpcroot) { print STDERR "Your MPC_ROOT environment variable does not point to + a ", "valid MPC location.\n"; } else { print STDERR "You can set the MPC_ROOT environment variable to the + ", "location of MPC.\n"; } exit(255); } require Driver; # ************************************************************ # Subroutine Section # ************************************************************ sub getBasePath { return $mpcpath; } # ************************************************************ # Main Section # ************************************************************ my($driver) = new Driver($basePath, Driver::workspaces()); exit($driver->run(@ARGV));

In reply to Driver.pm Package by ahmadamin41

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.