in reply to Re: MakeMaker/Module::Build force make install
in thread MakeMaker/Module::Build force make install
ExtUtils::MakeMaker, on the other hand, supports uninstall.make uninstall make: don't know how to make uninstall. Stop
Oh, and touching the source doesn't trick make install into installing unchanged targets either:
Turns out that ExtUtils::Install checks the size and then calls compare of File::Compare which compares the content:Skipping /foo/bar/baz/Module.pm (unchanged)
if ( -f $targetfile && -s _ == $size) { # We have a good chance, we can skip this one $diff = compare($sourcefile, $targetfile); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: MakeMaker/Module::Build force make install
by PodMaster (Abbot) on Mar 11, 2005 at 02:45 UTC | |
|
Re^3: MakeMaker/Module::Build force make install
by Tanktalus (Canon) on Mar 11, 2005 at 14:06 UTC |