]> granicus.if.org Git - curl/commitdiff
cmdline-opts/gen.pl: warn if mutexes: or see-also: list non-existing options
authorDaniel Stenberg <daniel@haxx.se>
Mon, 28 May 2018 12:59:37 +0000 (14:59 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Mon, 28 May 2018 13:02:03 +0000 (15:02 +0200)
docs/cmdline-opts/gen.pl

index 6ecf1b51e385b55042ca3522887c1ac8f56a6286..dd990caf0210ed223e60f1e28c41d589ec762ef3 100755 (executable)
@@ -202,6 +202,9 @@ sub single {
         my @m=split(/ /, $seealso);
         my $mstr;
         for my $k (@m) {
+            if(!$helplong{$k}) {
+                print STDERR "WARN: $f see-alsos a non-existing option: $k\n";
+            }
             my $l = manpageify($k);
             $mstr .= sprintf "%s$l", $mstr?" and ":"";
         }
@@ -216,6 +219,9 @@ sub single {
         my @m=split(/ /, $mutexed);
         my $mstr;
         for my $k (@m) {
+            if(!$helplong{$k}) {
+                print STDERR "WARN: $f mutexes a non-existing option: $k\n";
+            }
             my $l = manpageify($k);
             $mstr .= sprintf "%s$l", $mstr?" and ":"";
         }