in reply to How to set the path of Dmake.exe for Strawberry perl

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

Replies are listed 'Best First'.
Re^2: How to set the path of Dmake.exe for Strawberry perl
by Anonymous Monk on Sep 17, 2009 at 09:47 UTC
    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%