mirror of
https://github.com/curl/curl.git
synced 2026-08-25 04:53:31 +03:00
cmdline-opts: Fixed build and test in out of source tree builds
This commit is contained in:
parent
88bdd7cf6f
commit
edb2d02855
5 changed files with 11 additions and 10 deletions
|
|
@ -19,7 +19,7 @@ Verify that all libcurl options have man pages
|
|||
</name>
|
||||
|
||||
<command type="perl">
|
||||
%SRCDIR/manpage-scan.pl %SRCDIR/..
|
||||
%SRCDIR/manpage-scan.pl %SRCDIR/.. %PWD/..
|
||||
</command>
|
||||
</client>
|
||||
|
||||
|
|
|
|||
|
|
@ -39,8 +39,9 @@
|
|||
use strict;
|
||||
use warnings;
|
||||
|
||||
# we may get the dir root pointed out
|
||||
# we may get the dir roots pointed out
|
||||
my $root=$ARGV[0] || ".";
|
||||
my $buildroot=$ARGV[1] || ".";
|
||||
my $syms = "$root/docs/libcurl/symbols-in-versions";
|
||||
my $curlh = "$root/include/curl/curl.h";
|
||||
my $errors=0;
|
||||
|
|
@ -196,7 +197,7 @@ close(R);
|
|||
|
||||
#########################################################################
|
||||
# parse the curl.1 man page, extract all documented command line options
|
||||
open(R, "<$root/docs/curl.1") ||
|
||||
open(R, "<$buildroot/docs/curl.1") ||
|
||||
die "no input file";
|
||||
my @manpage; # store all parsed parameters
|
||||
while(<R>) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue