Subject: | SIGN=1 should work with make as well as Makefile.PL |
Currently SIGN is implemented by adding or removing distsignature from
the distdir target. This means "make dist SIGN=1" will not change
anything. It should.
It would be really useful for this sort of thing:
perl Makefile.PL
make disttest
make dist SIGN=1
Currently you have to do:
perl Makefile.PL SIGN=1
make disttest
make dist
which causes the dist to be made twice and thus signed twice and thus
typing in your GPG passphrase twice.