We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03ce4b1 commit b94387eCopy full SHA for b94387e
Makefile.PL
@@ -52,7 +52,14 @@ sub Usage
52
print "\n";
53
exit(0);
54
}
55
-Usage() if (@ARGV and $ARGV[0] =~ m|^([-/]*)?h(elp)?|i);
+if (@ARGV and $ARGV[0] =~ m|^([-/]*)?h(elp)?|i)
56
+{
57
+ Usage();
58
+}
59
+else
60
61
+ print "\nrun as `perl Makefile.PL help` to show user options\n";
62
63
64
65
# Get debugging flags
@@ -62,7 +69,8 @@ if ( grep { if (m/^verbose/i) { $verbose++; 1; } else { 0; } } @ARGV )
69
# Strip out interface args
70
@ARGV = grep { !m/^verbose=/i } @ARGV;
71
-print "\$verbose set to $verbose\n" if $verbose;
72
+print "\$verbose set to $verbose" . ($verbose ? "" : " - enable by running as `perl Makefile.PL verbose`");
73
+print "\n\n";
66
74
67
75
68
76
# Get distribution build flags
0 commit comments