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

This node falls below the community's threshold of quality. You may see it by logging in.

Replies are listed 'Best First'.
Re: How to set the path of Dmake.exe for Strawberry perl
by Corion (Patriarch) on Sep 17, 2009 at 08:44 UTC
Re: How to set the path of Dmake.exe for Strawberry perl
by syphilis (Archbishop) on Sep 17, 2009 at 08:54 UTC
    I searched Dmake.exe exists in C:\strawberry directory

    That's easy then. At the prompt just enter:
    set PATH=C:\strawberry;%PATH%
    and dmake will be found.

    Update: Ooow ... hang on ... what was the actual error ? You'll have to look in out.make to find out. Alternatively, if you replace #!perl with #!perl -w, the actual error should get printed to the console.

    Cheers,
    Rob
      set path=%path%;C:\strawberry\perl\bin\ set path=%path%;C:\strawberry\c\bin

        I prefer to prepend the Perl directories to the path, so the newly added Perl gets found first, which likely was the intention.

        set path=C:\strawberry\perl\bin;%path% set path=C:\strawberry\c\bin;%path%