in reply to Re: pp only to create executable when source has changed
in thread pp only to create executable when source has changed
if (-m $source > -m $exe) {
where do I find the docs of this -m function?
UPDATE:
while (my ($source, $exe) = keys %files) {
did you really mean keys? not each?
my ($source, $exe) = splice(@ARGV, 0, 2);
and now your directly overwriting the loop vars?
Cheers Rolf
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: pp only to create executable when source has changed (pseudocode)
by muba (Priest) on Dec 06, 2012 at 17:48 UTC | |
by LanX (Saint) on Dec 06, 2012 at 21:51 UTC |