Skip to content
This repository has been archived by the owner on Jun 9, 2018. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
add flag verbose
  • Loading branch information
fperrad committed Dec 3, 2009
1 parent 0795343 commit 647fbcd
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions setup.pir
Expand Up @@ -133,7 +133,7 @@ SOURCES
cmd .= ' --srm '
cmd .= srm
cmd .= ' wmlscript/translation.rules'
system(cmd)
system(cmd, 1 :named('verbose'))
L1:

$P0 = split ' ', 'wmlscript/wmlslibs.cfg build/stdlibs.pl'
Expand All @@ -142,14 +142,14 @@ SOURCES
cmd = 'perl build/stdlibs.pl'
cmd .= ' --output wmlscript/stdlibs.pir'
cmd .= ' wmlscript/wmlslibs.cfg'
system(cmd)
system(cmd, 1 :named('verbose'))
L2:
.end

.sub 'clean' :anon
.param pmc kv :slurpy :named
unlink('wmlscript/opcode.pir')
unlink('wmlscript/stdlibs.pir')
unlink('wmlscript/opcode.pir', 1 :named('verbose'))
unlink('wmlscript/stdlibs.pir', 1 :named('verbose'))
.end

.sub 'testclean' :anon
Expand All @@ -165,7 +165,7 @@ SOURCES
$S0 = get_parrot()
cmd .= $S0
cmd .= " t/pmc/*.t"
system(cmd)
system(cmd, 1 :named('verbose'))
.end

# Local Variables:
Expand Down

0 comments on commit 647fbcd

Please sign in to comment.